Uses of Interface
org.eclipse.pde.core.plugin.IPluginModelBase
-
Packages that use IPluginModelBase Package Description org.eclipse.pde.core.plugin Application programming interfaces for working with PDE's model of plug-ins.org.eclipse.pde.launching Application programming interfaces to PDE launching support.org.eclipse.pde.ui Application programming interfaces describing UI elements that can be contributed to PDE.org.eclipse.pde.ui.launcher Application programming interfaces to PDE launching support.org.eclipse.pde.ui.templates Application programming interfaces for contributing to and extending PDE project templates. -
-
Uses of IPluginModelBase in org.eclipse.pde.core.plugin
Subinterfaces of IPluginModelBase in org.eclipse.pde.core.plugin Modifier and Type Interface Description interface
IFragmentModel
This type of model is created by parsing the manifest file.interface
IPluginModel
This type of model is created by parsing the manifest file.Fields in org.eclipse.pde.core.plugin with type parameters of type IPluginModelBase Modifier and Type Field Description protected ArrayList<IPluginModelBase>
ModelEntry. fExternalEntries
The list of external models with the same entry IDprotected ArrayList<IPluginModelBase>
ModelEntry. fWorkspaceEntries
The list of workspace models with the same entry IDMethods in org.eclipse.pde.core.plugin that return IPluginModelBase Modifier and Type Method Description static IPluginModelBase
PluginRegistry. findModel(String id)
Returns the plug-in model for the best match plug-in with the given ID.static IPluginModelBase
PluginRegistry. findModel(String id, String version, int match, PluginRegistry.PluginFilter filter)
Returns a model matching the given id, version, match rule, and optional filter, ornull
if none.static IPluginModelBase
PluginRegistry. findModel(String id, VersionRange range, PluginRegistry.PluginFilter filter)
Returns a model matching the given id, version range, and optional filter, ornull
if none.static IPluginModelBase
PluginRegistry. findModel(IProject project)
Returns the plug-in model corresponding to the given project, ornull
if the project does not represent a plug-in project or if it contains a manifest file that is malformed or missing vital information.static IPluginModelBase
PluginRegistry. findModel(BundleDescription desc)
Returns a plug-in model associated with the given bundle descriptionstatic IPluginModelBase[]
PluginRegistry. findModels(String id, String version, int match, PluginRegistry.PluginFilter filter)
Returns all models matching the given id, version, match rule, and optional filter.static IPluginModelBase[]
PluginRegistry. findModels(String id, VersionRange range, PluginRegistry.PluginFilter filter)
Returns all models matching the given id, version range, and optional filter.IPluginModelBase[]
ModelEntry. getActiveModels()
Returns all the plug-ins, with the model entry ID, that are currently active.static IPluginModelBase[]
PluginRegistry. getActiveModels()
Returns all plug-ins and fragments in the workspace as well as all plug-ins and fragments that are checked on the Target Platform preference page.static IPluginModelBase[]
PluginRegistry. getActiveModels(boolean includeFragments)
Returns all plug-ins and (possibly) fragments in the workspace as well as all plug-ins and (possibly) fragments that are checked on the Target Platform preference page.static IPluginModelBase[]
PluginRegistry. getAllModels()
Returns all plug-ins and fragments in the workspace as well as all target plug-ins and fragments, regardless whether or not they are checked or not on the Target Platform preference page.static IPluginModelBase[]
PluginRegistry. getAllModels(boolean includeFragments)
Returns all plug-ins and (possibly) fragments in the workspace as well as all plug-ins and (possibly) fragments, regardless whether or not they are checked on the Target Platform preference page.IPluginModelBase[]
ModelEntry. getExternalModels()
Returns all plug-ins in the target platform that have the model entry ID.static IPluginModelBase[]
PluginRegistry. getExternalModels()
Return the model manager that keeps track of plug-ins in the target platformIPluginModelBase
ModelEntry. getModel()
Returns the plug-in model for the best match plug-in with the given ID.IPluginModelBase
ModelEntry. getModel(BundleDescription desc)
Return the plug-in model associated with the given bundle description ornull
if none is found.IPluginModelBase
IPluginObject. getPluginModel()
Returns the model that owns this object.IPluginModelBase[]
ModelEntry. getWorkspaceModels()
Returns all the workspace plug-ins that have the model entry IDstatic IPluginModelBase[]
PluginRegistry. getWorkspaceModels()
Returns all plug-in models in the workspaceMethods in org.eclipse.pde.core.plugin with parameters of type IPluginModelBase Modifier and Type Method Description boolean
PluginRegistry.PluginFilter. accept(IPluginModelBase model)
Returns whether the given model is accepted by this filter.static IBuildModel
PluginRegistry. createBuildModel(IPluginModelBase model)
Creates and returns a model associated with thebuild.properties
of a bundle in the workspace ornull
if none.static void
TargetPlatform. createPlatformConfiguration(File location, IPluginModelBase[] plugins, IPluginModelBase brandingPlugin)
Deprecated.Old Update Manager is planned for removal and so it this API. -
Uses of IPluginModelBase in org.eclipse.pde.launching
Fields in org.eclipse.pde.launching with type parameters of type IPluginModelBase Modifier and Type Field Description protected Map<String,IPluginModelBase>
EquinoxLaunchConfiguration. fAllBundles
-
Uses of IPluginModelBase in org.eclipse.pde.ui
Methods in org.eclipse.pde.ui with parameters of type IPluginModelBase Modifier and Type Method Description void
IExtensionEditorWizard. init(IProject project, IPluginModelBase pluginModel, IStructuredSelection selection)
Initializes the wizard with the project of the plug-in and the model object for the plug-in manifest file.void
IExtensionWizard. init(IProject project, IPluginModelBase pluginModel)
Initializes the wizard with the project of the plug-in and the model object for the plug-in manifest file.boolean
IPluginContentWizard. performFinish(IProject project, IPluginModelBase model, IProgressMonitor monitor)
Executes the wizard when 'Finish' button has been pressed. -
Uses of IPluginModelBase in org.eclipse.pde.ui.launcher
Fields in org.eclipse.pde.ui.launcher with type parameters of type IPluginModelBase Modifier and Type Field Description protected Map<String,IPluginModelBase>
EquinoxLaunchConfiguration. fAllBundles
Deprecated. -
Uses of IPluginModelBase in org.eclipse.pde.ui.templates
Fields in org.eclipse.pde.ui.templates declared as IPluginModelBase Modifier and Type Field Description protected IPluginModelBase
AbstractTemplateSection. model
The plug-in model.Methods in org.eclipse.pde.ui.templates with parameters of type IPluginModelBase Modifier and Type Method Description void
AbstractTemplateSection. execute(IProject project, IPluginModelBase model, IProgressMonitor monitor)
The default implementation of the interface method.void
BaseOptionTemplateSection. execute(IProject project, IPluginModelBase model, IProgressMonitor monitor)
void
ITemplateSection. execute(IProject project, IPluginModelBase model, IProgressMonitor monitor)
Executes the template.void
BaseOptionTemplateSection. initializeFields(IPluginModelBase model)
Initializes options in the wizard page using the data provided by the method parameters.boolean
AbstractNewPluginTemplateWizard. performFinish(IProject project, IPluginModelBase model, IProgressMonitor monitor)
Implements the interface method by looping through template sections and executing them sequentially.
-