Interface IWizardPageDescriptor
-
- All Known Implementing Classes:
CommentsWizardPageDescriptor,IVMLWizardPageDescriptor,VILWizardPageDescriptor,VTLWizardPageDescriptor
public interface IWizardPageDescriptorSpecification of relevant information of aAbstractFiletypeWizardPageinstance.- Author:
- El-Sharkawy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDefaultFileName()A default name as a suggestion for the user.java.lang.StringgetDescription()A description of theAbstractFiletypeWizardPage.java.lang.StringgetFileExtension()The file extension to be created (needed for a consistency check).org.eclipse.jface.resource.ImageDescriptorgetImageDescriptor()An image for theAbstractFiletypeWizardPage.java.lang.StringgetTitle()The title of theAbstractFiletypeWizardPage.
-
-
-
Method Detail
-
getFileExtension
java.lang.String getFileExtension()
The file extension to be created (needed for a consistency check).- Returns:
- The file extension without a leading dot.
-
getTitle
java.lang.String getTitle()
The title of theAbstractFiletypeWizardPage.- Returns:
- A short title.
-
getDescription
java.lang.String getDescription()
A description of theAbstractFiletypeWizardPage.- Returns:
- A description.
-
getImageDescriptor
org.eclipse.jface.resource.ImageDescriptor getImageDescriptor()
An image for theAbstractFiletypeWizardPage.- Returns:
- A loaded image or null.
-
getDefaultFileName
java.lang.String getDefaultFileName()
A default name as a suggestion for the user.- Returns:
- Something like "new_file.extension".
-
-