Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2010-03-16 02:13:37 +0000
committerPascal Rapicault2010-03-16 02:13:37 +0000
commit17ed433cb17b702a2c86080397cd0a5b3c44dc02 (patch)
treee3aeacf8e0296412177f396b7f9bebacc54eeeef /bundles/org.eclipse.equinox.p2.metadata/src
parentf2dcf9a6f93fea831a1bf858d9a965e531c22838 (diff)
downloadrt.equinox.p2-17ed433cb17b702a2c86080397cd0a5b3c44dc02.tar.gz
rt.equinox.p2-17ed433cb17b702a2c86080397cd0a5b3c44dc02.tar.xz
rt.equinox.p2-17ed433cb17b702a2c86080397cd0a5b3c44dc02.zip
*** empty log message ***
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.metadata/src')
-rw-r--r--bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/IRequirementChange.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/IRequirementChange.java b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/IRequirementChange.java
index 16c21098b..a705f6a3c 100644
--- a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/IRequirementChange.java
+++ b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/metadata/IRequirementChange.java
@@ -18,10 +18,24 @@ import org.eclipse.equinox.internal.p2.metadata.IRequiredCapability;
*/
public interface IRequirementChange {
+ /**
+ *
+ * @noreference This method is not intended to be referenced by clients.
+ */
public IRequiredCapability applyOn();
+ /**
+ *
+ * @noreference This method is not intended to be referenced by clients.
+ */
+
public IRequiredCapability newValue();
+ /**
+ *
+ * @noreference This method is not intended to be referenced by clients.
+ */
+
public boolean matches(IRequiredCapability toMatch);
/**

Back to the top