Package org.tinyuml.umldraw.sequence

Examples of org.tinyuml.umldraw.sequence.SequenceDiagram


   * Creates a new Sequence editor.
   * @param umlModel the UmlModel
   * @return the editor panel
   */
  public EditorPanel openNewSequenceEditor(UmlModel umlModel) {
    GeneralDiagram diagram = new SequenceDiagram(umlModel);
    diagram.setLabelText(ApplicationResources.getInstance().getString(
      "stdcaption.sequencediagram") + " " + (sequenceCounter++));
    umlModel.addDiagram(diagram);
    return createEditorPanel(new SequenceDiagramEditor(
      shell.getShellComponent(), diagram),
      new SequenceEditorToolbarManager());
View Full Code Here

TOP

Related Classes of org.tinyuml.umldraw.sequence.SequenceDiagram

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.