| org.eclipse.pde.core.plugin.IPluginExtension
All known Subclasses: org.eclipse.pde.internal.core.plugin.PluginExtension, org.eclipse.pde.internal.core.text.plugin.PluginExtensionNode,
IPluginExtension | public interface IPluginExtension extends IPluginParent,IIdentifiable(Code) | | Classes that implement this interface model the extension
element found in the plug-in or fragment manifest.
|
Method Summary | |
String | getPoint() Returns the full Id of the extension point that this extension
is plugged into. | Object | getSchema() Returns the schema for the extension point that this extension
is plugged into or null if not found. | void | setPoint(String point) Sets the value of the extension point Id
This method will throw a CoreException if
this model is not editable. |
P_POINT | String P_POINT(Code) | | A name of the property that will be used to
notify about the "point" change
|
getPoint | String getPoint()(Code) | | Returns the full Id of the extension point that this extension
is plugged into.
|
getSchema | Object getSchema()(Code) | | Returns the schema for the extension point that this extension
is plugged into or null if not found.
This method is an implementation detail - schema object
is not needed for clients outside PDE and should not be used.
|
setPoint | void setPoint(String point) throws CoreException(Code) | | Sets the value of the extension point Id
This method will throw a CoreException if
this model is not editable.
Parameters: point - the new extension point Id |
|
|