Example usage for org.eclipse.jface.wizard WizardPage setDescription

List of usage examples for org.eclipse.jface.wizard WizardPage setDescription

Introduction

In this page you can find the example usage for org.eclipse.jface.wizard WizardPage setDescription.

Prototype

@Override
public void setDescription(String description) 

Source Link

Document

The WizardPage implementation of this IDialogPage method extends the DialogPage implementation to update the wizard container title bar.

Usage

From source file:at.bestsolution.efxclipse.tooling.pde.ui.E3PluginTemplate.java

License:Open Source License

@Override
public void addPages(Wizard wizard) {
    WizardPage page = createPage(0);
    page.setTitle("Eclipse 3.x ViewPart plugin");
    page.setDescription("Template to create an Eclipse 3.x ViewPart plugin");
    wizard.addPage(page);// w  w  w. jav a2s.  c o m
    markPagesAdded();
}

From source file:at.bestsolution.efxclipse.tooling.pde.ui.FXOSGiAppTemplate.java

License:Open Source License

public void addPages(Wizard wizard) {
    WizardPage page = createPage(0);
    page.setTitle("JavaFX Application");
    page.setDescription("Template to create JavaFX application");
    wizard.addPage(page);//w  w w  .j ava2s .  c om
    markPagesAdded();
}

From source file:at.bestsolution.efxclipse.tooling.pde.ui.FXOSGiBundleTemplate.java

License:Open Source License

public void addPages(Wizard wizard) {
    WizardPage page = createPage(0);
    page.setTitle("JavaFX Bundle");
    page.setDescription("Template to create JavaFX application");
    wizard.addPage(page);//from   w w w. ja v a  2 s  .  c  o m
    markPagesAdded();
}

From source file:at.bestsolution.efxclipse.tooling.pde.ui.HelloRCPTemplate.java

License:Open Source License

public void addPages(Wizard wizard) {
    WizardPage page = createPage(0, null);
    page.setTitle("Basic JavaFX/RCP application");
    page.setDescription(
            "This template creates a minimal standalone JavaFX/RCP application that consists of an application window with a title.");
    wizard.addPage(page);// w  w  w. jav a  2s .  c o m
    markPagesAdded();
}

From source file:carisma.preference.template.PrefPageSection.java

License:Open Source License

@Override
public final void addPages(final Wizard wizard) {
    WizardPage page = createPage(0, "");
    page.setTitle("Preference Page Wizard");
    page.setDescription("Configure your preference page.");
    wizard.addPage(page);/*from   w  ww.j av  a  2s  .com*/
    markPagesAdded();
    validateOptions(this.createPage);
}

From source file:carisma.template.core.DummyCheckSection.java

License:Open Source License

@Override
public final void addPages(final Wizard wizard) {
    WizardPage page = createPage(0, "");
    page.setTitle("Check Wizard");
    page.setDescription("This Wizard allows you to setup your Check for the CARiSMA Tool properly.");
    wizard.addPage(page);/*from   www .j  a v a  2 s. c  o  m*/
    validatePage();
    markPagesAdded();
}

From source file:cn.dockerfoundry.ide.eclipse.server.ui.internal.DockerFoundryCredentialsPart.java

License:Open Source License

public DockerFoundryCredentialsPart(DockerFoundryServer cfServer, WizardPage wizardPage) {
    this(cfServer);

    if (wizardPage != null) {
        wizardPage.setTitle(NLS.bind(Messages.DockerFoundryCredentialsPart_TEXT_CREDENTIAL_WIZ_TITLE, service));
        wizardPage.setDescription(Messages.SERVER_WIZARD_VALIDATOR_CLICK_TO_VALIDATE);
        ImageDescriptor banner = DockerFoundryImages.getWizardBanner(serverTypeId);
        if (banner != null) {
            wizardPage.setImageDescriptor(banner);
        }//w  w w.j  a v a2  s .co  m
        runnableContext = wizardPage.getWizard() != null && wizardPage.getWizard().getContainer() != null
                ? wizardPage.getWizard().getContainer()
                : null;
    }
}

From source file:com.puppetlabs.geppetto.ui.wizard.AbstractPuppetProjectWizard.java

License:Open Source License

@Override
public void addPages() {
    WizardPage newProjectCreationPage = newProjectCreationPage("NewProjectCreationPage"); //$NON-NLS-1$

    newProjectCreationPage.setTitle(UIPlugin.getLocalString(getWizardPageTitleKey()));
    newProjectCreationPage.setDescription(UIPlugin.getLocalString(getWizardPageDescriptionKey()));

    addPage(newProjectCreationPage);//from ww  w  . jav a2s . c o m
}

From source file:edu.uci.lighthouse.sdk.templates.SimpleViewTemplateSection.java

License:Open Source License

public void addPages(Wizard wizard) {
    WizardPage page = createPage(0, IHelpContextIds.TEMPLATE_INTRO);
    page.setTitle("Lighthouse CompartmentFigure Template");
    page.setDescription("Creates a simple CompartmentFigure to demonstrate...");
    wizard.addPage(page);// w  w  w.ja v  a2  s  .  c  o  m
    markPagesAdded();
}

From source file:fr.inria.atlanmod.collaboro.ui.wizards.ReferredWizard.java

License:Open Source License

@Override
public void addPages() {
    WizardPage page = new SelectionPage("first");
    page.setTitle("Referred Element");
    page.setDescription("Select the element being referred by this model change");
    addPage(page);/*from  w  w w .j a v  a2  s  .c  o  m*/
}