Further improvements in LogicUI:
[Mograsim.git] / LogicUI / src / era / mi / components / gui / BasicGUIComponent.java
1 package era.mi.components.gui;
2
3 import java.util.List;
4
5 import era.mi.logic.wires.WireArray;
6 import net.haspamelodica.swt.helper.gcs.GeneralGC;
7 import net.haspamelodica.swt.helper.swtobjectwrappers.Point;
8
9 public interface BasicGUIComponent
10 {
11         public void render(GeneralGC gc);
12
13         public int getConnectedWireArraysCount();
14         public WireArray getConnectedWireArray(int connectionIndex);
15         public Point getWireArrayConnectionPoint(int connectionIndex);
16 }