de.cau.cs.kieler.synccharts.presentation
Class SyncchartsModelWizard

java.lang.Object
  extended by org.eclipse.jface.wizard.Wizard
      extended by de.cau.cs.kieler.synccharts.presentation.SyncchartsModelWizard
All Implemented Interfaces:
IWizard, INewWizard, IWorkbenchWizard

public class SyncchartsModelWizard
extends Wizard
implements INewWizard

This is a simple wizard for creating a new model file.

Rating red
Generated:
This code was automatically generated.

Nested Class Summary
 class SyncchartsModelWizard.SyncchartsModelWizardInitialObjectCreationPage
          This is the page where the type of object to create is selected.
 class SyncchartsModelWizard.SyncchartsModelWizardNewFileCreationPage
          This is the one page of the wizard.
 
Field Summary
static String copyright
           
static List<String> FILE_EXTENSIONS
          The supported extensions for created files.
static String FORMATTED_FILE_EXTENSIONS
          A formatted list of supported file extensions, suitable for display.
protected  SyncchartsModelWizard.SyncchartsModelWizardInitialObjectCreationPage initialObjectCreationPage
          This is the initial object creation page.
protected  List<String> initialObjectNames
          Caches the names of the types that can be created as the root object.
protected  SyncchartsModelWizard.SyncchartsModelWizardNewFileCreationPage newFileCreationPage
          This is the file creation page.
protected  IStructuredSelection selection
          Remember the selection during initialization for populating the default container.
protected  SyncchartsFactory syncchartsFactory
          This caches an instance of the model factory.
protected  SyncchartsPackage syncchartsPackage
          This caches an instance of the model package.
protected  IWorkbench workbench
          Remember the workbench during initialization.
 
Fields inherited from class org.eclipse.jface.wizard.Wizard
DEFAULT_IMAGE
 
Constructor Summary
SyncchartsModelWizard()
           
 
Method Summary
 void addPages()
          The framework calls this to create the contents of the wizard.
protected  EObject createInitialModel()
          Create a new model.
protected  Collection<String> getInitialObjectNames()
          Returns the names of the types that can be created as the root object.
 IFile getModelFile()
          Get the file from the page.
 void init(IWorkbench workbench, IStructuredSelection selection)
          This just records the information.
 boolean performFinish()
          Do the work after everything is specified.
 
Methods inherited from class org.eclipse.jface.wizard.Wizard
addPage, canFinish, createPageControls, dispose, getContainer, getDefaultPageImage, getDialogSettings, getNextPage, getPage, getPageCount, getPages, getPreviousPage, getShell, getStartingPage, getTitleBarColor, getWindowTitle, isHelpAvailable, needsPreviousAndNextButtons, needsProgressMonitor, performCancel, setContainer, setDefaultPageImageDescriptor, setDialogSettings, setForcePreviousAndNextButtons, setHelpAvailable, setNeedsProgressMonitor, setTitleBarColor, setWindowTitle
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.eclipse.jface.wizard.IWizard
canFinish, createPageControls, dispose, getContainer, getDefaultPageImage, getDialogSettings, getNextPage, getPage, getPageCount, getPages, getPreviousPage, getStartingPage, getTitleBarColor, getWindowTitle, isHelpAvailable, needsPreviousAndNextButtons, needsProgressMonitor, performCancel, setContainer
 

Field Detail

copyright

public static final String copyright

See Also:
Constant Field Values
Generated:
This code was automatically generated.

FILE_EXTENSIONS

public static final List<String> FILE_EXTENSIONS
The supported extensions for created files.

Generated:
This code was automatically generated.

FORMATTED_FILE_EXTENSIONS

public static final String FORMATTED_FILE_EXTENSIONS
A formatted list of supported file extensions, suitable for display.

Generated:
This code was automatically generated.

syncchartsPackage

protected SyncchartsPackage syncchartsPackage
This caches an instance of the model package.

Generated:
This code was automatically generated.

syncchartsFactory

protected SyncchartsFactory syncchartsFactory
This caches an instance of the model factory.

Generated:
This code was automatically generated.

newFileCreationPage

protected SyncchartsModelWizard.SyncchartsModelWizardNewFileCreationPage newFileCreationPage
This is the file creation page.

Generated:
This code was automatically generated.

initialObjectCreationPage

protected SyncchartsModelWizard.SyncchartsModelWizardInitialObjectCreationPage initialObjectCreationPage
This is the initial object creation page.

Generated:
This code was automatically generated.

selection

protected IStructuredSelection selection
Remember the selection during initialization for populating the default container.

Generated:
This code was automatically generated.

workbench

protected IWorkbench workbench
Remember the workbench during initialization.

Generated:
This code was automatically generated.

initialObjectNames

protected List<String> initialObjectNames
Caches the names of the types that can be created as the root object.

Generated:
This code was automatically generated.
Constructor Detail

SyncchartsModelWizard

public SyncchartsModelWizard()
Method Detail

init

public void init(IWorkbench workbench,
                 IStructuredSelection selection)
This just records the information.

Specified by:
init in interface IWorkbenchWizard
Generated:
This code was automatically generated.

getInitialObjectNames

protected Collection<String> getInitialObjectNames()
Returns the names of the types that can be created as the root object.

Generated:
This code was automatically generated.

createInitialModel

protected EObject createInitialModel()
Create a new model.

Generated:
This code was automatically generated.

performFinish

public boolean performFinish()
Do the work after everything is specified.

Specified by:
performFinish in interface IWizard
Specified by:
performFinish in class Wizard
Generated:
This code was automatically generated.

addPages

public void addPages()
The framework calls this to create the contents of the wizard.

Specified by:
addPages in interface IWizard
Overrides:
addPages in class Wizard
Generated:
This code was automatically generated.

getModelFile

public IFile getModelFile()
Get the file from the page.

Generated:
This code was automatically generated.