X-Git-Url: https://mograsim.net/gitweb/?a=blobdiff_plain;f=LogicUI%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fui%2Fmodel%2Fcomponents%2FGUINotGate.java;fp=LogicUI%2Fsrc%2Fnet%2Fmograsim%2Flogic%2Fui%2Fmodel%2Fcomponents%2FGUINotGate.java;h=01df349bb9c7d094904e080e4a813c57923cef0f;hb=0009789a8df6b8d4562b6e1cbfa75102a7516ea8;hp=0000000000000000000000000000000000000000;hpb=a28f7aa0dab4248e99159c5a647676170cb17a4e;p=Mograsim.git diff --git a/LogicUI/src/net/mograsim/logic/ui/model/components/GUINotGate.java b/LogicUI/src/net/mograsim/logic/ui/model/components/GUINotGate.java new file mode 100644 index 00000000..01df349b --- /dev/null +++ b/LogicUI/src/net/mograsim/logic/ui/model/components/GUINotGate.java @@ -0,0 +1,12 @@ +package net.mograsim.logic.ui.model.components; + +import net.mograsim.logic.ui.model.ViewModel; + +public class GUINotGate extends SimpleRectangularGUIGate +{ + public GUINotGate(ViewModel model, int logicWidth) + { + super(model, logicWidth, "1", true); + setInputCount(1); + } +} \ No newline at end of file