public JConnection addRightLeftMethodConnection( ConnectionType type, EntityFigure name, Integer occurences) { JConnection connection = addRightLeftConnection(type, name, occurences); connection.setMethodToMethodStyle(); return connection; }
public JConnection addToSourceMethodConnection( ConnectionType type, EntityFigure label, Integer occurences) { JConnection connection = addLeftRightConnection(type, label, occurences); connection.setMethodToMethodStyle(); connection.setDottedLine(); return connection; }
public JConnection addToSameClassMethodConnectionLL( ConnectionType type, EntityFigure label, Integer occurences, int bendHeight) { JConnection connection = addLeftLeftConnection(type, label, occurences, bendHeight); connection.setMethodToMethodStyle(); return connection; }