Completely changed the structure and switched to Eclipse Plugin.
[Mograsim.git] / net.mograsim.logic.ui / src / net / mograsim / logic / ui / model / components / mi / nandbased / GUIand.java
diff --git a/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/mi/nandbased/GUIand.java b/net.mograsim.logic.ui/src/net/mograsim/logic/ui/model/components/mi/nandbased/GUIand.java
deleted file mode 100644 (file)
index 018e9bb..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-package net.mograsim.logic.ui.model.components.mi.nandbased;
-
-import net.haspamelodica.swt.helper.swtobjectwrappers.Point;
-import net.mograsim.logic.ui.model.ViewModelModifiable;
-import net.mograsim.logic.ui.model.components.GUINandGate;
-import net.mograsim.logic.ui.model.components.SimpleRectangularSubmodelComponent;
-import net.mograsim.logic.ui.model.wires.GUIWire;
-import net.mograsim.logic.ui.model.wires.Pin;
-import net.mograsim.logic.ui.model.wires.WireCrossPoint;
-
-public class GUIand extends SimpleRectangularSubmodelComponent
-{
-       public GUIand(ViewModelModifiable model)
-       {
-               super(model, 1, "GUIand");
-               setSubmodelScale(.4);
-               setInputPins("A", "B");
-               setOutputPins("Y");
-               initSubmodelComponents();
-       }
-
-       @SuppressWarnings("unused") // for GUIWires being created
-       private void initSubmodelComponents()
-       {
-               Pin A = getSubmodelPin("A");
-               Pin B = getSubmodelPin("B");
-               Pin Y = getSubmodelPin("Y");
-
-               GUINandGate nand = new GUINandGate(submodelModifiable, 1);
-               GUINandGate not = new GUINandGate(submodelModifiable, 1);
-
-               WireCrossPoint cp1 = new WireCrossPoint(submodelModifiable, 1);
-
-               nand.moveTo(20, 15);
-               not.moveTo(50, 15);
-               cp1.moveCenterTo(45, 25);
-
-               new GUIWire(submodelModifiable, A, nand.getPin("A"));
-               new GUIWire(submodelModifiable, B, nand.getPin("B"));
-               new GUIWire(submodelModifiable, nand.getPin("Y"), cp1, new Point[0]);
-               new GUIWire(submodelModifiable, cp1, not.getPin("A"), new Point(45, 20));
-               new GUIWire(submodelModifiable, cp1, not.getPin("B"), new Point(45, 30));
-               new GUIWire(submodelModifiable, not.getPin("Y"), Y);
-       }
-}
\ No newline at end of file