| org.eclipse.pde.ui.IFieldData
All known Subclasses: org.eclipse.pde.internal.ui.wizards.plugin.AbstractFieldData,
IFieldData | public interface IFieldData (Code) | | The class that implements this interface is used to provide information
captured in the 'New Plug-in Project' wizard pages as entered by the user.
The information is the provided to other consumers when generating content so
that the content can be configured/customized according to the data.
since: 2.0 |
getId | String getId()(Code) | | Plug-in identifier field.
plug-in identifier as entered in the wizard |
getLibraryName | String getLibraryName()(Code) | | Plug-in library field
the name of the initial Java library |
getName | String getName()(Code) | | Plug-in name field
plug-in name as entered in the wizard |
getOutputFolderName | String getOutputFolderName()(Code) | | Output folder field
the name of the Java output folder |
getProvider | String getProvider()(Code) | | Plug-in provider field
plug-in provider as entered in the wizard |
getSourceFolderName | String getSourceFolderName()(Code) | | Source folder field
the name of the Java source folder |
getVersion | String getVersion()(Code) | | Plug-in version field.
plug-in version as entered in the wizard |
hasBundleStructure | boolean hasBundleStructure()(Code) | | OSGi bundle selection
true if the plug-in has structure as expected byOSGi framework in Eclipse 3.0 runtime, false ifthe plug-in has standard pre-3.0 layout. |
isLegacy | boolean isLegacy()(Code) | | Legacy selection
true if the plug-in is created for use withproducts based on Eclipse before release 3.0, false if the plug-in is compatible with Eclipse 3.0. |
isSimple | boolean isSimple()(Code) | | Simple project selection
true if the plug-in should have no Java code andnature, false otherwise. |
|
|