コード例 #1
0
  public JConnection addToSourceWeakWriteConnection(
      ConnectionType type, EntityFigure name, Integer occurences) {
    JConnection connection = addToSourceWriteConnection(type, name, occurences);
    connection.setDottedLine();

    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 addToSourceBendConnection(
      ConnectionType type, EntityFigure name, Integer occurences) {
    JConnection connection = addLeftRightConnection(type, name, occurences);
    connection.setSlightBendRouter();
    connection.setDottedLine();
    connection.setWriteStyle();

    return connection;
  }