Package org.tinyuml.model

Examples of org.tinyuml.model.UmlProperty


  public List<UmlProperty> getAttributes() {
    List<String> attributeStrings =
      ((StringTableModel) attributeTable.getModel()).getEntries();
    List<UmlProperty> result = new ArrayList<UmlProperty>();
    for (String attributeString : attributeStrings) {
      UmlProperty property = (UmlProperty) UmlProperty.getPrototype().clone();
      property.setName(attributeString);
      result.add(property);
    }
    return result;
  }
View Full Code Here

TOP

Related Classes of org.tinyuml.model.UmlProperty

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.