Further improvements in LogicUI:
[Mograsim.git] / LogicUI / src / era / mi / components / gui / BasicGUIComponent.java
index 5a20b26..6813991 100644 (file)
@@ -1,8 +1,16 @@
 package era.mi.components.gui;\r
 \r
+import java.util.List;\r
+\r
+import era.mi.logic.wires.WireArray;\r
 import net.haspamelodica.swt.helper.gcs.GeneralGC;\r
+import net.haspamelodica.swt.helper.swtobjectwrappers.Point;\r
 \r
 public interface BasicGUIComponent\r
 {\r
        public void render(GeneralGC gc);\r
+\r
+       public int getConnectedWireArraysCount();\r
+       public WireArray getConnectedWireArray(int connectionIndex);\r
+       public Point getWireArrayConnectionPoint(int connectionIndex);\r
 }
\ No newline at end of file