Reformatted everything. Eclipse built-in Linewrapping/Comments 140 chars
[Mograsim.git] / era.mi / src / era / mi / logic / components / Component.java
index 2d40cc2..c5186d0 100644 (file)
@@ -4,18 +4,16 @@ import java.util.List;
 
 import era.mi.logic.wires.WireArray;
 
-public interface Component
-{
+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();
 }