Example usage for org.eclipse.jface.wizard IWizardNode interface-usage

List of usage examples for org.eclipse.jface.wizard IWizardNode interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.wizard IWizardNode interface-usage.

Usage

From source file com.ebmwebsourcing.petals.services.su.wizards.pages.ComponentWizardDescriptionWizardNode.java

/**
 * @author Mickael Istria - EBM WebSourcing
 */
public class ComponentWizardDescriptionWizardNode implements IWizardNode {

    private final AbstractServiceUnitWizard wizard;

From source file com.google.gdt.eclipse.gph.wizards.CheckoutWizardNode.java

/**
 * Basic {@link IWizardNode} implementation for driving checkout wizards.
 */
public class CheckoutWizardNode implements IWizardNode {

    private final ICheckoutProvider checkoutProvider;

From source file com.google.gdt.eclipse.gph.wizards.ProvisionSCMProviderNode.java

/**
 * A wizard node to launch the ProvisionSCMProviderWizard wizard.
 */
public class ProvisionSCMProviderNode implements IWizardNode {
    private GPHProject project;

From source file com.microsoft.tfs.client.common.ui.teambuild.wizards.CreateBuildConfigurationWizardNode.java

public class CreateBuildConfigurationWizardNode implements IWizardNode {
    private static final String ATT_ID = "id"; //$NON-NLS-1$
    private static final String ATT_NAME = "name"; //$NON-NLS-1$
    private static final String ATT_CLASS = "class"; //$NON-NLS-1$
    private static final String ATT_ICON = "icon"; //$NON-NLS-1$
    private static final String ATT_FROM_VER = "fromTFSVersion"; //$NON-NLS-1$

From source file com.nokia.carbide.internal.api.templatewizard.ui.TemplatePagesNode.java

/**
 * Wizard node creating the pages after choosing a template
 */
public class TemplatePagesNode implements IWizardNode {

    public static class TemplatePagesWizard extends Wizard {

From source file com.nokia.cdt.internal.debug.launch.wizard.WizardNode.java

class WizardNode implements IWizardNode {
    private IWizard wizard;
    private Wizard selected;

    public WizardNode(LaunchWizardSelectionPage parentPage, Wizard selected) {
        this.selected = selected;

From source file com.siteview.mde.internal.ui.wizards.target.EditTargetNode.java

/**
 * Embedded wizard to edit a target
 */
public class EditTargetNode implements IWizardNode {

    private EditTargetDefinitionWizard fWizard;

From source file com.siteview.mde.internal.ui.wizards.WizardNode.java

public abstract class WizardNode implements IWizardNode {
    private IWizard wizard;
    private WizardSelectionPage parentWizardPage;
    protected WizardElement wizardElement;

    public WizardNode(WizardSelectionPage parentPage, WizardElement element) {

From source file de.bmw.yamaica.common.ui.internal.dialogs.WizardNode.java

public class WizardNode implements IWizardNode {
    private IWorkbenchWizard workbenchWizard = null;
    private YamaicaWizardSelectionPage yamaicaWizardSelectionPage;
    private IWizardDescriptor wizardDescriptor;

    public WizardNode(YamaicaWizardSelectionPage yamaicaWizardSelectionPage, IWizardDescriptor wizardDescriptor) {

From source file eu.celar.ui.wizards.wizardselection.IWizardSelectionNode.java

/**
 * Interface to be implemented by nodes to be displayed in a
 * WizardSelectionListPage.
 */
public interface IWizardSelectionNode extends IWizardNode {