Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2010-01-12 15:07:48 +0000
committerJohn Arthorne2010-01-12 15:07:48 +0000
commit8b5424d1594cd47f75d56a8fdf1f6715d2ab08a3 (patch)
treedce2112e7254c3038bfc00cf9454b25565650d1f
parent09c1f872321ee089756c1e8af85efb18ae13f40d (diff)
downloadrt.equinox.p2-8b5424d1594cd47f75d56a8fdf1f6715d2ab08a3.tar.gz
rt.equinox.p2-8b5424d1594cd47f75d56a8fdf1f6715d2ab08a3.tar.xz
rt.equinox.p2-8b5424d1594cd47f75d56a8fdf1f6715d2ab08a3.zip
javadoc type param
-rw-r--r--bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/Collector.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/Collector.java b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/Collector.java
index dfd0ad2e0..f7e36e07d 100644
--- a/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/Collector.java
+++ b/bundles/org.eclipse.equinox.p2.metadata/src/org/eclipse/equinox/p2/query/Collector.java
@@ -26,6 +26,7 @@ import org.eclipse.equinox.internal.p2.metadata.Messages;
* <p>
* This default collector just accepts all objects passed to it. Clients may subclass
* to perform different processing on the objects passed to it.
+ * @param <T> The type of object accepted by this collector
* @since 2.0
*/
public class Collector<T> implements IQueryResult<T> {

Back to the top