Examples of IWizardContainer


Examples of org.eclipse.jface.wizard.IWizardContainer

            descImageCanvas.setImage(null);
        }

        descImageCanvas.getParent().layout(true);

        IWizardContainer container = page.getWizard().getContainer();
        if (container instanceof IWizardContainer2) {
            ((IWizardContainer2) container).updateSize();
        }
    }
View Full Code Here

Examples of org.eclipse.jface.wizard.IWizardContainer

            BrowserCommonConstants.IMG_ENTRY_WIZARD ) );
        setPageComplete( false );

        this.wizard = wizard;

        IWizardContainer container = wizard.getContainer();
        if ( container instanceof WizardDialog )
        {
            WizardDialog dialog = ( WizardDialog ) container;
            dialog.addPageChangedListener( new IPageChangedListener()
            {
View Full Code Here

Examples of org.eclipse.jface.wizard.IWizardContainer

    }

    void querySelected(SelectionChangedEvent event) {
        IStructuredSelection selection = (IStructuredSelection) event.getSelection();
        selectedIdentifier = (CannedQueryIdentifier) selection.getFirstElement();
        IWizardContainer container = getContainer();
        if (container != null && container.getCurrentPage() != null) {
            container.updateButtons();
        }
    }
View Full Code Here

Examples of org.eclipse.jface.wizard.IWizardContainer

            model.setSaveAuthInfo(saveAuthInfo);
            model.setCreateNewRep(true);
        } catch (Exception e) {
            model.setRepLocation(null);
        }
        IWizardContainer container = super.getWizard().getContainer();
        if (container != null) {
            container.updateButtons();
        }
    }
View Full Code Here

Examples of org.eclipse.jface.wizard.IWizardContainer

            public void run() {
                final Shell shell = new Shell(display);
                shell.setLayout(new FillLayout());
                Composite pageContainer = new Composite(shell, 0);
                AppEngineWizard appEngineWizard = new AppEngineWizard();
                appEngineWizard.setContainer(new IWizardContainer() {

                    public void run(boolean fork, boolean cancelable, IRunnableWithProgress runnable)
                            throws InvocationTargetException, InterruptedException {
                        runnable.run(new NullProgressMonitor());
                    }
View Full Code Here

Examples of org.eclipse.jface.wizard.IWizardContainer

    }

    descImageCanvas.getParent().layout(true);
    filteredTree.getViewer().getTree().showSelection();

    IWizardContainer container = page.getWizard().getContainer();
    if (container instanceof IWizardContainer2) {
      ((IWizardContainer2) container).updateSize();
    }
  }
View Full Code Here

Examples of org.eclipse.jface.wizard.IWizardContainer

        }
    }
   
    private final void refreshTitle()
    {
        final IWizardContainer container = getContainer();
       
        if( container != null )
        {
            container.updateWindowTitle();
        }
    }
View Full Code Here

Examples of org.eclipse.jface.wizard.IWizardContainer

            @Override
            public void layout()
            {
                super.layout();
               
                final IWizardContainer container = getContainer();
               
                if( container instanceof IWizardContainer2 )
                {
                    ( (IWizardContainer2) container ).updateSize();
                }
View Full Code Here

Examples of org.eclipse.jface.wizard.IWizardContainer

  public void update() {
    fragment.updateChildFragments();
    ((FragmentedWizard) getWizard()).updatePages();

    final IWizardContainer container = getContainer();
    if (container.getCurrentPage() != null) {
      getShell().getDisplay().syncExec(new Runnable() {
        public void run() {
          container.updateButtons();
        }
      });
    }
  }
View Full Code Here

Examples of org.eclipse.jface.wizard.IWizardContainer

    this.contractCriteria = new ContractBean();
  }
 
  public void createPageControls(Composite pageContainer) {
    super.createPageControls(pageContainer);
    IWizardContainer container = getContainer();
    if (container instanceof WizardDialog) {
      WizardDialog dialog = (WizardDialog) container;
      dialog.addPageChangingListener(this);
    }
  }
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.