new method for getting observable object

This commit is contained in:
fros4943 2007-01-09 09:47:10 +00:00
parent ab2373cfec
commit 286dfe0e54
1 changed files with 12 additions and 4 deletions

View File

@ -26,13 +26,13 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: SilentRadioMedium.java,v 1.1 2006/08/21 12:13:14 fros4943 Exp $
* $Id: SilentRadioMedium.java,v 1.2 2007/01/09 09:47:10 fros4943 Exp $
*/
package se.sics.cooja.radiomediums;
import java.util.Collection;
import java.util.Observable;
import java.util.Observer;
import org.jdom.Element;
import se.sics.cooja.*;
@ -43,9 +43,12 @@ import se.sics.cooja.interfaces.*;
*
* @author Fredrik Osterlind
*/
@ClassDescription("Silent Radio")
@ClassDescription("No radio traffic")
public class SilentRadioMedium extends RadioMedium {
public SilentRadioMedium(Simulation simulation) {
}
public void registerMote(Mote mote, Simulation sim) {
// Do nothing
}
@ -65,6 +68,11 @@ public class SilentRadioMedium extends RadioMedium {
public void addRadioMediumObserver(Observer observer) {
// Do nothing
}
public Observable getRadioMediumObservable() {
// Return empty observable
return new Observable();
}
public void deleteRadioMediumObserver(Observer observer) {
// Do nothing
@ -82,7 +90,7 @@ public class SilentRadioMedium extends RadioMedium {
return null;
}
public boolean setConfigXML(Collection<Element> configXML) {
public boolean setConfigXML(Collection<Element> configXML, boolean visAvailable) {
return true;
}