The final restructured version for automatic build using maven tycho
[Mograsim.git] / net.mograsim.logic.model.editor / src / net / mograsim / logic / model / editor / handles / PinHandle.java
diff --git a/net.mograsim.logic.model.editor/src/net/mograsim/logic/model/editor/handles/PinHandle.java b/net.mograsim.logic.model.editor/src/net/mograsim/logic/model/editor/handles/PinHandle.java
deleted file mode 100644 (file)
index 2e4a9dc..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-package net.mograsim.logic.model.editor.handles;
-
-import net.mograsim.logic.model.model.wires.Pin;
-
-public abstract class PinHandle extends Handle
-{
-       public PinHandle(int priority)
-       {
-               super(priority);
-       }
-
-       public abstract Pin getPin();
-
-       public abstract double getCenterX();
-
-       public abstract double getCenterY();
-}