Ejemplo n.º 1
0
  public JConnection addToTargetReadConnection(
      ConnectionType type, EntityFigure name, Integer occurences) {
    JConnection connection = addRightLeftConnection(type, name, occurences);
    connection.setReadStyle();

    return connection;
  }
Ejemplo n.º 2
0
  public JConnection addToSameClassReadConnectionLL(
      ConnectionType type, EntityFigure label, Integer occurences, int bendHeight) {
    JConnection connection = addLeftLeftConnection(type, label, occurences, bendHeight);

    connection.setReadStyle();

    return connection;
  }