Renamed mograsim to net.mograsim
[Mograsim.git] / LogicUI / src / net / mograsim / logic / ui / model / components / GUINotGate.java
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 (file)
index 0000000..01df349
--- /dev/null
@@ -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