Examples of Wizard


Examples of de.chris_soft.utilities.swing.wizard.Wizard

  /**
   * Constructor.
   */
  public ConfigurationWizard() {
    wizard = new Wizard(null, "NanoDoA Configuration Wizard", null);
    addIntroductionPanelToWizard();
    addMailPanelToWizard();
    addArchivePanelToWizard();
  }
View Full Code Here

Examples of jodd.db.oom.tst.Wizard

  @Test
  public void testExtend() {
    DbOomQuery dbOomQuery = sql("select $C{w.*}, $C{w.user:u.*} from $T{Wizard w} inner join $T{User u} on $w.wizardId=$u.userId").query();

    Wizard wizard = dbOomQuery.find(/*Wizard.class, User.class*/);

    assertNotNull(wizard);
    assertEquals(1, wizard.wizardId);
    assertEquals(7, wizard.level);
    assertEquals("Gandalf", wizard.getName());

    // all in one class!

    dbOomQuery = sql("select $C{w.%}, $C{u.*} from $T{Wizard w} inner join $T{User u} on $w.wizardId=$u.userId").query();
    WizUser wizUser = dbOomQuery.find(WizUser.class);
View Full Code Here

Examples of net.sourceforge.stripes.action.Wizard

     * @return a non-null (though possibly empty) list of field names
     */
    protected Collection<String> getFieldsPresentInfo(ActionBean bean) {
        ActionBeanContext ctx = bean.getContext();
        String fieldsPresent = ctx.getRequest().getParameter(StripesConstants.URL_KEY_FIELDS_PRESENT);
        Wizard wizard = bean.getClass().getAnnotation(Wizard.class);
        boolean isWizard = wizard != null;

        if (fieldsPresent == null || "".equals(fieldsPresent)) {
            if (isWizard && !CollectionUtil.contains(wizard.startEvents(), ctx.getEventName())) {
                throw new StripesRuntimeException(
                        "Submission of a wizard form in Stripes absolutely requires that "
                                + "the hidden field Stripes writes containing the names of the fields "
                                + "present on the form is present and encrypted (as Stripes write it). "
                                + "This is necessary to prevent a user from spoofing the system and "
View Full Code Here

Examples of net.sourceforge.stripes.action.Wizard

     * @return a non-null (though possibly empty) list of field names
     */
    protected Collection<String> getFieldsPresentInfo(ActionBean bean) {
        ActionBeanContext ctx = bean.getContext();
        String fieldsPresent = ctx.getRequest().getParameter(StripesConstants.URL_KEY_FIELDS_PRESENT);
        Wizard wizard = bean.getClass().getAnnotation(Wizard.class);
        boolean isWizard = wizard != null;

        if (fieldsPresent == null || "".equals(fieldsPresent)) {
            if (isWizard && !CollectionUtil.contains(wizard.startEvents(), ctx.getEventName())) {
                throw new StripesRuntimeException(
                        "Submission of a wizard form in Stripes absolutely requires that "
                                + "the hidden field Stripes writes containing the names of the fields "
                                + "present on the form is present and encrypted (as Stripes write it). "
                                + "This is necessary to prevent a user from spoofing the system and "
View Full Code Here

Examples of nz.govt.natlib.meta.ui.wizard.Wizard

    if (node.getType() == ObjectFolderNode.SIMPLE) {
      recurse = true;
      flatten = true;
    }

    wizard = new Wizard((JFrame) controller, "Create Object");

    wizard.addWizardItem(new SelectFileWizardItem(controller, node));
    wizard.addWizardItem(new PropertyWizardItem(node));

    wizard.start();
View Full Code Here

Examples of org.apache.myfaces.tobago.model.Wizard

 
  private String filterType;
  private String filterValue;

  public FilterController() {
    wizard = new Wizard();
  }
View Full Code Here

Examples of org.apache.myfaces.tobago.model.Wizard

      facesContext.getExternalContext().getRequestMap().remove(var);
    }
  }

  public void onComponentCreated(FacesContext context, UIComponent parent) {
    Wizard wizard = getController();
    wizard.register();
    if (getOutcome() != null) {
      getController().getCurrentStep().setOutcome(getOutcome());
    }
    if (getTitle() != null) {
      getController().getCurrentStep().setTitle(getTitle());
View Full Code Here

Examples of org.apache.myfaces.tobago.model.Wizard

      facesContext.getExternalContext().getRequestMap().remove(var);
    }
  }

  public void onComponentCreated(FacesContext context, UIComponent parent) {
    Wizard wizard = getController();
    wizard.register();
    if (getOutcome() != null) {
      getController().getCurrentStep().setOutcome(getOutcome());
    }
    if (getTitle() != null) {
      getController().getCurrentStep().setTitle(getTitle());
View Full Code Here

Examples of org.apache.myfaces.tobago.model.Wizard

    state.addSelection(temp2);
    state.setMarker(music);

    // wizard

    wizard = new Wizard();
  }
View Full Code Here

Examples of org.apache.myfaces.tobago.model.Wizard

      facesContext.getExternalContext().getRequestMap().remove(var);
    }
  }

  public void onComponentCreated(final FacesContext context, final UIComponent parent) {
    final Wizard wizard = getController();
    wizard.register();
    if (getOutcome() != null) {
      getController().getCurrentStep().setOutcome(getOutcome());
    }
    if (getTitle() != null) {
      getController().getCurrentStep().setTitle(getTitle());
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.