minor changes due to deletion of static variables

This commit is contained in:
fros4943 2007-01-09 10:08:02 +00:00
parent 74e55fbb81
commit 8de17adc2d
1 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: ContikiMote.java,v 1.3 2006/09/26 13:08:05 fros4943 Exp $
* $Id: ContikiMote.java,v 1.4 2007/01/09 10:08:02 fros4943 Exp $
*/
package se.sics.cooja.contikimote;
@ -278,7 +278,7 @@ public class ContikiMote implements Mote {
return config;
}
public boolean setConfigXML(Simulation simulation, Collection<Element> configXML) {
public boolean setConfigXML(Simulation simulation, Collection<Element> configXML, boolean visAvailable) {
mySim = simulation;
myState = State.ACTIVE;
@ -292,7 +292,7 @@ public class ContikiMote implements Mote {
} else if (name.equals("interface_config")) {
Class<? extends MoteInterface> moteInterfaceClass =
GUI.currentGUI.tryLoadClass(this, MoteInterface.class, element.getText().trim());
simulation.getGUI().tryLoadClass(this, MoteInterface.class, element.getText().trim());
if (moteInterfaceClass == null) {
logger.fatal("Could not load mote interface class: " + element.getText().trim());
@ -301,7 +301,7 @@ public class ContikiMote implements Mote {
MoteInterface moteInterface = myInterfaceHandler.getInterfaceOfType(moteInterfaceClass);
if (moteInterface != null)
moteInterface.setConfigXML(element.getChildren());
moteInterface.setConfigXML(element.getChildren(), visAvailable);
else
logger.warn("Can't restore configuration for non-existing interface: " + moteInterfaceClass.getName());
}