renamed main Java class of Cooja from GUI to Cooja.
se.sics.cooja.GUI -> se.sics.cooja.Cooja this commit does not contain any functional changes, but may require external scripts to be updated such as Makefiles.
This commit is contained in:
parent
f13af20f12
commit
625537158f
80 changed files with 499 additions and 499 deletions
|
@ -55,7 +55,7 @@ import org.apache.log4j.Logger;
|
|||
import org.jdom.Element;
|
||||
|
||||
import se.sics.cooja.ClassDescription;
|
||||
import se.sics.cooja.GUI;
|
||||
import se.sics.cooja.Cooja;
|
||||
import se.sics.cooja.Mote;
|
||||
import se.sics.cooja.PluginType;
|
||||
import se.sics.cooja.SimEventCentral.MoteCountListener;
|
||||
|
@ -88,7 +88,7 @@ public class PowerTracker extends VisPlugin {
|
|||
private JTable table;
|
||||
private int tableMaxRadioOnIndex = -1;
|
||||
|
||||
public PowerTracker(final Simulation simulation, final GUI gui) {
|
||||
public PowerTracker(final Simulation simulation, final Cooja gui) {
|
||||
super("PowerTracker", gui, false);
|
||||
this.simulation = simulation;
|
||||
|
||||
|
@ -109,7 +109,7 @@ public class PowerTracker extends VisPlugin {
|
|||
addMote(m);
|
||||
}
|
||||
|
||||
if (!GUI.isVisualized()) {
|
||||
if (!Cooja.isVisualized()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue