Package org.tinyuml.model

Examples of org.tinyuml.model.Relation


    UmlNode node2) {
    conn.setNode1(node1);
    conn.setNode2(node2);
    node1.addConnection(conn);
    node2.addConnection(conn);
    Relation relation = (Relation) conn.getModelElement();
    if (relation != null) {
      relation.setElement1(node1.getModelElement());
      relation.setElement2(node2.getModelElement());
    }
  }
View Full Code Here

TOP

Related Classes of org.tinyuml.model.Relation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.