Esempio n. 1
0
  public JConnection addToTargetWriteConnection(
      ConnectionType type, EntityFigure name, Integer occurences) {
    JConnection connection = addRightLeftConnection(type, name, occurences);
    connection.setWriteStyle();

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

    connection.setWriteStyle();

    return connection;
  }
Esempio n. 3
0
  public JConnection addToSourceBendConnection(
      ConnectionType type, EntityFigure name, Integer occurences) {
    JConnection connection = addLeftRightConnection(type, name, occurences);
    connection.setSlightBendRouter();
    connection.setDottedLine();
    connection.setWriteStyle();

    return connection;
  }