Fixed a bug in Am2900; created dlatch8/80; relayouted some components
[Mograsim.git] / net.mograsim.logic.model.editor / src / net / mograsim / logic / model / editor / handles / PinHandle.java
index 365bec5..2e4a9dc 100644 (file)
@@ -4,12 +4,14 @@ import net.mograsim.logic.model.model.wires.Pin;
 
 public abstract class PinHandle extends Handle
 {
-       public PinHandle()
+       public PinHandle(int priority)
        {
-               super();
+               super(priority);
        }
 
        public abstract Pin getPin();
+
        public abstract double getCenterX();
+
        public abstract double getCenterY();
 }