public JConnection addToTargetWriteConnection( ConnectionType type, EntityFigure name, Integer occurences) { JConnection connection = addRightLeftConnection(type, name, occurences); connection.setWriteStyle(); return connection; }
public JConnection addToSameClassWriteConnectionLL( ConnectionType type, EntityFigure label, Integer occurences, int bendHeight) { JConnection connection = addLeftLeftConnection(type, label, occurences, bendHeight); connection.setWriteStyle(); return connection; }
public JConnection addToSourceBendConnection( ConnectionType type, EntityFigure name, Integer occurences) { JConnection connection = addLeftRightConnection(type, name, occurences); connection.setSlightBendRouter(); connection.setDottedLine(); connection.setWriteStyle(); return connection; }