Package org.tinyuml.model

Examples of org.tinyuml.model.UmlStereotype


  public List<UmlStereotype> getStereotypes() {
    List<String> stereoStrings =
      ((StringTableModel) stereotypeTable.getModel()).getEntries();
    List<UmlStereotype> result = new ArrayList<UmlStereotype>();
    for (String stereoString : stereoStrings) {
      UmlStereotype stereotype = (UmlStereotype)
        UmlStereotype.getPrototype().clone();
      stereotype.setName(stereoString);
      result.add(stereotype);
    }
    return result;
  }
View Full Code Here


  public List<UmlStereotype> getStereotypes() {
    List<String> stereoStrings =
      ((StringTableModel) stereotypeTable.getModel()).getEntries();
    List<UmlStereotype> result = new ArrayList<UmlStereotype>();
    for (String stereoString : stereoStrings) {
      UmlStereotype stereotype = (UmlStereotype)
        UmlStereotype.getPrototype().clone();
      stereotype.setName(stereoString);
      result.add(stereotype);
    }
    return result;
  }
View Full Code Here

TOP

Related Classes of org.tinyuml.model.UmlStereotype

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.