Class NewClassWizardPage

java.lang.Object
org.eclipse.jface.dialogs.DialogPage
All Implemented Interfaces:
org.eclipse.jface.dialogs.IDialogPage, org.eclipse.jface.dialogs.IMessageProvider, org.eclipse.jface.wizard.IWizardPage

public class NewClassWizardPage extends NewTypeWizardPage
Wizard page to create a new class.

Note: This class is not intended to be subclassed, but clients can instantiate. To implement a different kind of a new class wizard page, extend NewTypeWizardPage.

Since:
2.0
Restriction:
This class is not intended to be subclassed by clients.
  • Constructor Details

    • NewClassWizardPage

      public NewClassWizardPage()
      Creates a new NewClassWizardPage
  • Method Details

    • init

      public void init(org.eclipse.jface.viewers.IStructuredSelection selection)
      The wizard owning this page is responsible for calling this method with the current selection. The selection is used to initialize the fields of the wizard page.
      Parameters:
      selection - used to initialize the fields
    • doStatusUpdate

      public final void doStatusUpdate()
      Since:
      3.30
    • handleFieldChanged

      protected void handleFieldChanged(String fieldName)
      Description copied from class: NewContainerWizardPage
      Hook method that gets called when a field on this page has changed. For this page the method gets called when the source folder field changes.

      Every sub type is responsible to call this method when a field on its page has changed. Subtypes override (extend) the method to add verification when a own field has a dependency to an other field. For example the class name input must be verified again when the package field changes (check for duplicated class names).

      Overrides:
      handleFieldChanged in class NewTypeWizardPage
      Parameters:
      fieldName - The name of the field that has changed (field id). For the source folder the field id is CONTAINER
    • createControl

      public void createControl(org.eclipse.swt.widgets.Composite parent)
    • setVisible

      public void setVisible(boolean visible)
      Specified by:
      setVisible in interface org.eclipse.jface.dialogs.IDialogPage
      Overrides:
      setVisible in class NewElementWizardPage
    • isCreateMain

      public boolean isCreateMain()
      Returns the current selection state of the 'Create Main' checkbox.
      Returns:
      the selection state of the 'Create Main' checkbox
    • isCreateConstructors

      public boolean isCreateConstructors()
      Returns the current selection state of the 'Create Constructors' checkbox.
      Returns:
      the selection state of the 'Create Constructors' checkbox
    • isCreateInherited

      public boolean isCreateInherited()
      Returns the current selection state of the 'Create inherited abstract methods' checkbox.
      Returns:
      the selection state of the 'Create inherited abstract methods' checkbox
    • setMethodStubSelection

      public void setMethodStubSelection(boolean createMain, boolean createConstructors, boolean createInherited, boolean canBeModified)
      Sets the selection state of the method stub checkboxes.
      Parameters:
      createMain - initial selection state of the 'Create Main' checkbox.
      createConstructors - initial selection state of the 'Create Constructors' checkbox.
      createInherited - initial selection state of the 'Create inherited abstract methods' checkbox.
      canBeModified - if true the method stub checkboxes can be changed by the user. If false the buttons are "read-only"
    • createTypeMembers

      protected void createTypeMembers(IType type, NewTypeWizardPage.ImportsManager imports, org.eclipse.core.runtime.IProgressMonitor monitor) throws org.eclipse.core.runtime.CoreException
      Description copied from class: NewTypeWizardPage
      Hook method that gets called from createType to support adding of unanticipated methods, fields, and inner types to the created type.

      Implementers can use any methods defined on IType to manipulate the new type.

      The source code of the new type will be formatted using the platform's formatter. Needed imports are added by the wizard at the end of the type creation process using the given import manager.

      Overrides:
      createTypeMembers in class NewTypeWizardPage
      Parameters:
      type - the new type created via createType
      imports - an import manager which can be used to add new imports
      monitor - a progress monitor to report progress. Must not be null
      Throws:
      org.eclipse.core.runtime.CoreException - thrown when creation of the type members failed
      See Also: