Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2010-01-11 21:18:08 +0000
committerJohn Arthorne2010-01-11 21:18:08 +0000
commitae8cc8226dd201acf7338abcd82b09c2e30a9237 (patch)
treed5dc4a197c8dfbba87646cc4c3fd561b9b349ae0
parent2909d6a4b18251590458e49b8cb4da4587cd23e8 (diff)
downloadrt.equinox.p2-ae8cc8226dd201acf7338abcd82b09c2e30a9237.tar.gz
rt.equinox.p2-ae8cc8226dd201acf7338abcd82b09c2e30a9237.tar.xz
rt.equinox.p2-ae8cc8226dd201acf7338abcd82b09c2e30a9237.zip
javadoc for type param
-rw-r--r--bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java
index 76a6a91b8..5cb14b01f 100644
--- a/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java
+++ b/bundles/org.eclipse.equinox.p2.repository/src/org/eclipse/equinox/p2/repository/spi/AbstractRepository.java
@@ -22,6 +22,7 @@ import org.eclipse.equinox.p2.repository.IRepository;
* <p>
* Clients may extend this class.
* </p>
+* @param <T> the type of object that can be queried for in this repository
* @since 2.0
*/
public abstract class AbstractRepository<T> extends PlatformObject implements IRepository<T> {

Back to the top