X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=era.mi%2Fsrc%2Fera%2Fmi%2Flogic%2Fcomponents%2FComponent.java;h=f104e5fceafba86f96584a8ead4c4818afdf849a;hb=b7ce41467a2cbd9f45554982730741810e99feaa;hp=522a58d90a4ef89756fe2d5e3098d0e69bfa6f85;hpb=5606ceefa2c360772194c85ed884e5f8f06f36aa;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 522a58d9..f104e5fc 100644 --- a/era.mi/src/era/mi/logic/components/Component.java +++ b/era.mi/src/era/mi/logic/components/Component.java @@ -2,7 +2,8 @@ package era.mi.logic.components; import java.util.List; -import era.mi.logic.wires.Wire.WireEnd; +import era.mi.logic.wires.Wire.ReadEnd; +import era.mi.logic.wires.Wire.ReadWriteEnd; public interface Component { @@ -11,10 +12,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 * 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. */ - public List getAllOutputs(); + public List getAllOutputs(); }