Examples of UmlLifeLine


Examples of org.tinyuml.model.UmlLifeLine

  /**
   * Tests the setters.
   */
  public void testSetters() {
    UmlLifeLine lifeline = (UmlLifeLine) UmlLifeLine.getPrototype().clone();
    assertNull(lifeline.getName());
  }
View Full Code Here

Examples of org.tinyuml.model.UmlLifeLine

    NoteElement notePrototype = (NoteElement)
      NoteElement.getPrototype().clone();
    elementPrototypes.put(ElementType.NOTE, notePrototype);
    LifeLineElement lifeLinePrototype = (LifeLineElement)
      LifeLineElement.getPrototype().clone();
    UmlLifeLine umlLifeLine = (UmlLifeLine) UmlLifeLine.getPrototype().clone();
    lifeLinePrototype.setModelElement(umlLifeLine);
    umlLifeLine.setName("Lifeline 1");
    elementPrototypes.put(ElementType.LIFE_LINE, lifeLinePrototype);
    return elementPrototypes;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.