Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2009-12-01 22:07:54 +0000
committerJohn Arthorne2009-12-01 22:07:54 +0000
commitd5ca880204dfb0f732f77fa09f6aa442f7f9c261 (patch)
tree14f799312778cb79d76920346d1b78188cfaa202
parent0e34c3bbf517514f10ce328cf16eb08f673c1723 (diff)
downloadrt.equinox.p2-d5ca880204dfb0f732f77fa09f6aa442f7f9c261.tar.gz
rt.equinox.p2-d5ca880204dfb0f732f77fa09f6aa442f7f9c261.tar.xz
rt.equinox.p2-d5ca880204dfb0f732f77fa09f6aa442f7f9c261.zip
added doc for @param arguments
-rw-r--r--bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/artifact/ArtifactKeyQuery.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/artifact/ArtifactKeyQuery.java b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/artifact/ArtifactKeyQuery.java
index ef5d7ba81..58faaa892 100644
--- a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/artifact/ArtifactKeyQuery.java
+++ b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/artifact/ArtifactKeyQuery.java
@@ -30,8 +30,9 @@ public class ArtifactKeyQuery extends MatchQuery {
/**
* Pass the id and/or version range to match IArtifactKeys against.
* Passing null results in matching any id/version
- * @param id - the IArtifactKey id
- * @param range - A version range
+ * @param classifier The artifact key classifier, or <code>null</code>
+ * @param id The artifact key id, or <code>null</code>
+ * @param range A version range, or <code>null</code>
*/
public ArtifactKeyQuery(String classifier, String id, VersionRange range) {
this.id = id;

Back to the top