Examples of HierarchyWizard


Examples of org.kite9.diagram.builders.wizards.hierarchy.HierarchyWizard

  @Kite9Item
  public void test_14_1_TestHierarchy() throws IOException {
    DiagramBuilder db = createBuilder();
    String rh = "Rob's Hierarchy";
    db.withObjects(rh).show(db.asConnectedContexts());
    HierarchyWizard hb = new HierarchyWizard(rh, db);
    hb.add(true, Top.class);
    hb.showClasses(db.asConnectedContexts(false, Layout.HORIZONTAL), db.asConnectedGlyphs(""));
    hb.showInheritance(db.asConnectedGlyphs(""));
    renderDiagram(db.getDiagram());
  }
View Full Code Here

Examples of org.kite9.diagram.builders.wizards.hierarchy.HierarchyWizard

    return db.getDiagram();
  }
 
  @Kite9Item
  public Diagram ADLClassHierarchy(DiagramBuilder db) {
    HierarchyWizard hw = new HierarchyWizard(null, db);
    hw.show(db.withPackages(Diagram.class, DiagramElement.class).withMemberClasses(null));
    return db.getDiagram();
  }
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.