Merge logic of origin into logic
[Mograsim.git] / era.mi / src / era / mi / logic / components / Component.java
index c3919bf..5e994e3 100644 (file)
@@ -2,7 +2,7 @@ package era.mi.logic.components;
 \r
 import java.util.List;\r
 \r
-import era.mi.logic.wires.WireArray;\r
+import era.mi.logic.wires.Wire.WireEnd;\r
 \r
 public interface Component\r
 {\r
@@ -11,10 +11,10 @@ public interface Component
         * Returns immutable list of all inputs to the {@link Component} (including e.g. the select bits to a MUX). Intended for visualization\r
         * in the UI.\r
         */\r
-       public List<WireArray> getAllInputs();\r
+       public List<WireEnd> getAllInputs();\r
 \r
        /**\r
         * Returns immutable list of all outputs to the {@link Component}. Intended for visualization in the UI.\r
         */\r
-       public List<WireArray> getAllOutputs();\r
+       public List<WireEnd> getAllOutputs();\r
 }\r