X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=era.mi%2Fsrc%2Fera%2Fmi%2Flogic%2Fcomponents%2FComponent.java;h=522a58d90a4ef89756fe2d5e3098d0e69bfa6f85;hb=c1d0ddc342c482051fa6c455bb286617135bd3c3;hp=2d40cc24089eef646f917d7a7d26cca15b14bcfe;hpb=bcf8d773c7a836c2ee17e17a49c296ebf31d2777;p=Mograsim.git diff --git a/era.mi/src/era/mi/logic/components/Component.java b/era.mi/src/era/mi/logic/components/Component.java index 2d40cc24..522a58d9 100644 --- a/era.mi/src/era/mi/logic/components/Component.java +++ b/era.mi/src/era/mi/logic/components/Component.java @@ -2,20 +2,19 @@ package era.mi.logic.components; import java.util.List; -import era.mi.logic.wires.WireArray; +import era.mi.logic.wires.Wire.WireEnd; 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 getAllInputs(); - + public List 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 getAllOutputs(); + public List getAllOutputs(); }