Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault (JBoss)2013-05-09 04:10:00 +0000
committerPascal Rapicault2013-05-09 04:10:00 +0000
commit3ddae89c32be65ee8099436925cc64c30f7564b4 (patch)
treef2d2b8fc400f4b020dfb202124b79f710024c65e /bundles/org.eclipse.equinox.p2.operations
parent220fb52a9b325af429abec698baf0082be4dab47 (diff)
downloadrt.equinox.p2-3ddae89c32be65ee8099436925cc64c30f7564b4.tar.gz
rt.equinox.p2-3ddae89c32be65ee8099436925cc64c30f7564b4.tar.xz
rt.equinox.p2-3ddae89c32be65ee8099436925cc64c30f7564b4.zip
Bug 407079 - [API][remediation] Clean API references
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.operations')
-rw-r--r--bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemediationOperation.java3
-rw-r--r--bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/Remedy.java3
-rw-r--r--bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemedyConfig.java3
-rw-r--r--bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemedyIUDetail.java12
4 files changed, 17 insertions, 4 deletions
diff --git a/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemediationOperation.java b/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemediationOperation.java
index d64dc6792..721cc2ac4 100644
--- a/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemediationOperation.java
+++ b/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemediationOperation.java
@@ -26,8 +26,9 @@ import org.eclipse.equinox.p2.repository.IRunnableWithProgress;
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as
* part of a work in progress. There is no guarantee that this API will
* work or that it will remain the same. Please do not use this API without
- * consulting with the <Your Team Name> team.
+ * consulting with the p2 team.
* </p>
+ * @noreference
* @since 2.3
*/
public class RemediationOperation extends ProfileChangeOperation {
diff --git a/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/Remedy.java b/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/Remedy.java
index 02ad85a78..59d3ff859 100644
--- a/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/Remedy.java
+++ b/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/Remedy.java
@@ -20,9 +20,10 @@ import org.eclipse.equinox.p2.planner.IProfileChangeRequest;
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as
* part of a work in progress. There is no guarantee that this API will
* work or that it will remain the same. Please do not use this API without
- * consulting with the <Your Team Name> team.
+ * consulting with the p2 team.
* </p>
* @since 2.3
+ * @noreference
*/
public class Remedy {
diff --git a/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemedyConfig.java b/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemedyConfig.java
index a4221d72a..53c8007cc 100644
--- a/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemedyConfig.java
+++ b/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemedyConfig.java
@@ -18,9 +18,10 @@ import java.util.Collection;
* <strong>EXPERIMENTAL</strong>. This class or interface has been added as
* part of a work in progress. There is no guarantee that this API will
* work or that it will remain the same. Please do not use this API without
- * consulting with the <Your Team Name> team.
+ * consulting with the p2 team.
* </p>
* @since 2.3
+ * @noreference
*/
public class RemedyConfig {
diff --git a/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemedyIUDetail.java b/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemedyIUDetail.java
index 1d060a528..50f15b3e2 100644
--- a/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemedyIUDetail.java
+++ b/bundles/org.eclipse.equinox.p2.operations/src/org/eclipse/equinox/p2/operations/RemedyIUDetail.java
@@ -11,8 +11,18 @@
package org.eclipse.equinox.p2.operations;
import org.eclipse.equinox.p2.metadata.IInstallableUnit;
-import org.eclipse.equinox.p2.metadata.Version;
+import org.eclipse.equinox.p2.metadata.Version;
+/**
+ * <p>
+ * <strong>EXPERIMENTAL</strong>. This class or interface has been added as
+ * part of a work in progress. There is no guarantee that this API will
+ * work or that it will remain the same. Please do not use this API without
+ * consulting with the p2 team.
+ * </p>
+ * @since 2.3
+ * @noreference
+ */
public class RemedyIUDetail {
public static final int STATUS_ADDED = 1;

Back to the top