public PanelAccessManager(Network net, ControlPanel cp)
 {
     network = net;
     this.cp = cp;
     isActive = false;
 }
 public PanelAccessManager(Network net)
 {
     network = net;
     this.cp = null;
     isActive = false;
 }
예제 #3
0
 protected InteractorInstance addInstance(int x, int y, InteractorStyle intstyle,
     ControlPanel cp, int width, int height)
 {
     throw new Exception("Not Yet Implemented");
 }
예제 #4
0
 protected InteractorInstance addInstance(int x, int y, InteractorStyle intstyle,
     ControlPanel cp)
 {
     return addInstance(x, y, intstyle, cp, 0, 0);
 }
 public void setPanel(ControlPanel panel)
 {
     controlPanel = panel;
 }
예제 #6
0
 public void mergePanels(ControlPanel cp, int x, int y)
 {
     throw new Exception("Not Yet Implemented");
 }