コード例 #1
0
  public JConnection addToTargetReadConnection(
      ConnectionType type, EntityFigure name, Integer occurences) {
    JConnection connection = addRightLeftConnection(type, name, occurences);
    connection.setReadStyle();

    return connection;
  }
コード例 #2
0
  public JConnection addToSameClassReadConnectionLL(
      ConnectionType type, EntityFigure label, Integer occurences, int bendHeight) {
    JConnection connection = addLeftLeftConnection(type, label, occurences, bendHeight);

    connection.setReadStyle();

    return connection;
  }