Added file representation for SimpleRectangularSubmodelComponents
[Mograsim.git] / net.mograsim.logic.ui / src / net / mograsim / logic / ui / model / wires / GUIWire.java
index 47f8517..eb7e8ab 100644 (file)
@@ -185,6 +185,11 @@ public class GUIWire
                return pin2;
        }
 
+       public Point[] getPath()
+       {
+               return path == null ? null : path.clone();
+       }
+
        // @formatter:off
        public void addRedrawListener   (Runnable listener) {redrawListeners         .add   (listener);}