| org.eclipse.pde.ui.templates.AbstractNewPluginTemplateWizard
All known Subclasses: org.eclipse.pde.internal.ui.wizards.templates.NewPluginTemplateChoiceWizard, org.eclipse.pde.ui.templates.NewPluginTemplateWizard,
AbstractNewPluginTemplateWizard | abstract public class AbstractNewPluginTemplateWizard extends Wizard implements IBundleContentWizard(Code) | | This class is used as a common base for plug-in content wizards that are
implemented using PDE template support. The assumption is that one or more
templates will be used to generate plug-in content. Dependencies, new files
and wizard pages are all computed based on the templates.
since: 2.0 |
AbstractNewPluginTemplateWizard | public AbstractNewPluginTemplateWizard()(Code) | | Creates a new template wizard.
|
addAdditionalPages | abstract protected void addAdditionalPages()(Code) | | This wizard adds a mandatory first page. Subclasses implement this method
to add additional pages to the wizard.
|
addPages | final public void addPages()(Code) | | Implements wizard method. Subclasses cannot override it.
|
getData | public IFieldData getData()(Code) | | Returns the field data passed to the wizard during the initialization.
the parent wizard field data |
getTemplateSections | abstract public ITemplateSection[] getTemplateSections()(Code) | | Returns the template sections used in this wizard.
the array of template sections |
hasPages | public boolean hasPages()(Code) | | |
performFinish | public boolean performFinish()(Code) | | See Also: org.eclipse.jface.wizard.Wizard.performFinish |
performFinish | public boolean performFinish(IProject project, IPluginModelBase model, IProgressMonitor monitor)(Code) | | Implements the interface method by looping through template sections and
executing them sequentially.
Parameters: project - the project Parameters: model - the plug-in model Parameters: monitor - the progress monitor to track the execution progress as partof the overall new project creation operation true if the wizard completed the operation withsuccess, false otherwise. |
|
|