Common ConnectionPoint interface to simplify many things
[Mograsim.git] / net.mograsim.logic.ui / src / net / mograsim / logic / ui / model / wires / ConnectionPoint.java
1 package net.mograsim.logic.ui.model.wires;
2
3 public interface ConnectionPoint
4 {
5         /**
6          * Retrieves the {@link Pin}, that is used by the {@link GUIWire} to connect to.
7          * 
8          * @return the {@link Pin} for the wire to connect to.
9          * 
10          * @author Christian Femers
11          */
12         Pin getPin();
13 }