Examples of show()


Examples of org.kite9.diagram.builders.java.ObjectBuilder.show()

      if (ob instanceof ObjectBuilder) {
        if (((ObjectBuilder) ob).size()>0) {
          ObjectBuilder notDoneYet = ((ObjectBuilder)ob).reduce(db.not(db.onlyOnDiagram()));
          ObjectBuilder alreadyDone = ((ObjectBuilder)ob).reduce(db.onlyOnDiagram());
          notDoneYet.show(objectFormatNew);
          alreadyDone.show(objectFormatExisting);
          if (isShowFieldValues()) {
            s.add(notDoneYet.withFieldValues(fieldFilter));
          }
          if (isShowMethodReturnValues()) {
            s.add(notDoneYet.withMethodReturnValues(methodFilter));
View Full Code Here

Examples of org.kite9.diagram.builders.java.PackageBuilder.show()

  @Kite9Item
  public Diagram example_1_5_UseCases(DiagramBuilder builder) throws IOException {
    // show use cases inside a context
    PackageBuilder ucp = builder.withPackages(UseCase.class);
    ucp.show(builder.asConnectedContexts());
    ClassBuilder uc = ucp.withMemberClasses(builder.not(builder.only(UseCase.class, Uses.class)));
    uc.show(builder.asConnectedGlyphs(null));

    // show actors inside context
    PackageBuilder ac = builder.withPackages(Actor.class);
View Full Code Here

Examples of org.kite9.diagram.builders.wizards.classdiagram.ClassDiagramWizard.show()

 
  @Kite9Item
  public static Diagram orderEntityRelationshipDiagramb(final DiagramBuilder db) {
    ClassBuilder classBuilder = db.withAnnotatedClasses();
    ClassDiagramWizard erf = new ClassDiagramWizard(db);
    erf.show(classBuilder);
    return db.getDiagram();
  }
 
}
View Full Code Here

Examples of org.kite9.diagram.builders.wizards.hierarchy.HierarchyWizard.show()

  }
 
  @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

Examples of org.kite9.diagram.builders.wizards.objectgraph.ObjectDependencyWizard.show()

  @Kite9Item
  public void test18_1_ObjectDependencyWizard1() throws IOException {
    MyOb ob = getTheObject();
    DiagramBuilder db = createBuilder();
    ObjectDependencyWizard odw = new ObjectDependencyWizard(db, null);
    odw.show(ob);
    renderDiagram(db.getDiagram());
  }
 
  @Test
  @Kite9Item
View Full Code Here

Examples of org.languagetool.gui.AboutDialog.show()

    public void run() {
      // TODO: null can cause the dialog to appear on the wrong screen in a
      // multi-monitor setup, but we just don't have a proper java.awt.Component
      // here which we could use instead:
      final AboutDialog about = new AboutDialog(messages, null);
      about.show();
    }
  }

  /**
   * Called from grammar/spell checking dialog to ignore a rule (not called when "Ignore" is
View Full Code Here

Examples of org.locationtech.udig.printing.ui.internal.editor.parts.LabelDirectEditManager.show()

                super.bringDown();
                disposed = true;
            }
        };

        manager.show();
    }
   

    private String getText( ) {
        return getLabelBoxPrinter().getText();
View Full Code Here

Examples of org.mmisw.orrportal.gwt.client.util.MyDialog.show()

    popup.addTextArea(null).setSize("600", "150");
    popup.getTextArea().setText("please wait ...");
    PortalControl.getInstance().notifyActivity(true);
    popup.setText("Creating ontology ...");
    popup.center();
    popup.show();

    AsyncCallback<CreateOntologyResult> callback = new AsyncCallback<CreateOntologyResult>() {
      public void onFailure(Throwable thr) {
        PortalControl.getInstance().notifyActivity(false);
        Window.alert(thr.toString());
View Full Code Here

Examples of org.noos.xing.mydoggy.plaf.ui.animation.MoveComponentAnimation.show()

        super.setVisible(b);
        if (b) {
            Rectangle detachedBounds = SwingUtil.validateBounds(contentUI.getDetachedBounds());
            if (detachedBounds != null) {
                MoveComponentAnimation animation = new MoveComponentAnimation(200f, this);
                animation.show(detachedBounds);
                setBounds(detachedBounds);
            }
        }
    }
View Full Code Here

Examples of org.onesocialweb.gwt.client.ui.window.ProfileWindow.show()

                  .getCurrentApplication();
              ProfileWindow profileWindow = (ProfileWindow) app
                  .addWindow(ProfileWindow.class.toString(),
                      1);
              profileWindow.setJID(input.getText());
              profileWindow.show();
            }

          });

    }
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.