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:
Fredrik Osterlind 2013-11-19 10:17:00 +01:00
parent f13af20f12
commit 625537158f
80 changed files with 499 additions and 499 deletions

View file

@ -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;
}