WireArrayEnd now created with U and GUITest supports U
[Mograsim.git] / era.mi / src / era / mi / logic / components / Component.java
index 2d40cc2..19b5d3e 100644 (file)
@@ -8,14 +8,13 @@ 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 in the UI.
+        * Returns immutable list of all inputs to the {@link Component} (including e.g. the select bits to a MUX). Intended for visualization
+        * in the UI.
         */
        public List<WireArray> getAllInputs();
-       
+
        /**
-        * Returns immutable list of all outputs to the {@link Component}.
-        * Intended for visualization in the UI.
+        * Returns immutable list of all outputs to the {@link Component}. Intended for visualization in the UI.
         */
        public List<WireArray> getAllOutputs();
 }