Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'ui/org.eclipse.pde.core/src/org/eclipse/pde/core/plugin/ModelEntry.java')
-rw-r--r--ui/org.eclipse.pde.core/src/org/eclipse/pde/core/plugin/ModelEntry.java32
1 files changed, 16 insertions, 16 deletions
diff --git a/ui/org.eclipse.pde.core/src/org/eclipse/pde/core/plugin/ModelEntry.java b/ui/org.eclipse.pde.core/src/org/eclipse/pde/core/plugin/ModelEntry.java
index aecdbed5a5..ba2a97fa21 100644
--- a/ui/org.eclipse.pde.core/src/org/eclipse/pde/core/plugin/ModelEntry.java
+++ b/ui/org.eclipse.pde.core/src/org/eclipse/pde/core/plugin/ModelEntry.java
@@ -4,7 +4,7 @@
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
- *
+ *
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
@@ -20,9 +20,9 @@ import org.eclipse.osgi.service.resolver.BundleDescription;
* <p>
* This class is not meant to be extended or instantiated by clients.
* </p>
- *
+ *
* @since 3.3
- *
+ *
* @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients.
*/
@@ -42,7 +42,7 @@ public class ModelEntry extends PlatformObject {
/**
* Constructor
- *
+ *
* @param id the entry ID
*/
public ModelEntry(String id) {
@@ -51,7 +51,7 @@ public class ModelEntry extends PlatformObject {
/**
* Returns all the workspace plug-ins that have the model entry ID
- *
+ *
* @return an array of workspace plug-ins that have the model entry ID
*/
public IPluginModelBase[] getWorkspaceModels() {
@@ -62,7 +62,7 @@ public class ModelEntry extends PlatformObject {
* Returns all plug-ins in the target platform that have the model entry ID.
* The returned result contains both plug-ins that are enabled (ie. checked on the
* <b>Plug-in Development > Target Platform</b> preference page) and disabled.
- *
+ *
* @return an array of plug-ins in the target platform that have the model entry ID
*/
public IPluginModelBase[] getExternalModels() {
@@ -82,10 +82,10 @@ public class ModelEntry extends PlatformObject {
* the plug-in with the highest version is returned.
* </p>
* <p>
- * In the case of a tie among more than one suitable plug-in that have the same version,
+ * In the case of a tie among more than one suitable plug-in that have the same version,
* one of those plug-ins is randomly returned.
* </p>
- *
+ *
* @return the plug-in model for the best match plug-in with the given ID
*/
public IPluginModelBase getModel() {
@@ -128,14 +128,14 @@ public class ModelEntry extends PlatformObject {
/**
* Returns all the plug-ins, with the model entry ID, that are currently active.
* <p>
- * Workspace plug-ins are always active.
+ * Workspace plug-ins are always active.
* Target plug-ins are only active if:
* <ul>
* <li>they are checked on the <b>Plug-in Development > Target Platform</b> preference page</li>
* <li>there does not exist a workspace plug-in that has the same ID</li>
* </ul>
* </p>
- *
+ *
* @return an array of the currently active plug-ins with the model entry ID
*/
public IPluginModelBase[] getActiveModels() {
@@ -156,7 +156,7 @@ public class ModelEntry extends PlatformObject {
/**
* Returns the model entry ID
- *
+ *
* @return the model entry ID
*/
public String getId() {
@@ -164,11 +164,11 @@ public class ModelEntry extends PlatformObject {
}
/**
- * Return the plug-in model associated with the given bundle description or
+ * Return the plug-in model associated with the given bundle description or
* <code>null</code> if none is found.
- *
+ *
* @param desc the given bundle description
- *
+ *
* @return the plug-in model associated with the given bundle description if such a
* model exists.
*/
@@ -192,7 +192,7 @@ public class ModelEntry extends PlatformObject {
/**
* Returns <code>true</code> if there are workspace plug-ins associated with the ID
* of this model entry; <code>false</code>otherwise.
- *
+ *
* @return <code>true</code> if there are workspace plug-ins associated with the ID
* of this model entry; <code>false</code>otherwise.
*/
@@ -203,7 +203,7 @@ public class ModelEntry extends PlatformObject {
/**
* Returns <code>true</code> if there are target plug-ins associated with the ID
* of this model entry; <code>false</code>otherwise.
- *
+ *
* @return <code>true</code> if there are target plug-ins associated with the ID
* of this model entry; <code>false</code>otherwise.
*/

Back to the top