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

    return connection;
  }
コード例 #2
0
 public JConnection addToSourceMethodConnection(
     ConnectionType type, EntityFigure label, Integer occurences) {
   JConnection connection = addLeftRightConnection(type, label, occurences);
   connection.setMethodToMethodStyle();
   connection.setDottedLine();
   return connection;
 }
コード例 #3
0
  public JConnection addToSameClassMethodConnectionLL(
      ConnectionType type, EntityFigure label, Integer occurences, int bendHeight) {
    JConnection connection = addLeftLeftConnection(type, label, occurences, bendHeight);

    connection.setMethodToMethodStyle();

    return connection;
  }