Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormtaal2008-08-04 12:38:14 +0000
committermtaal2008-08-04 12:38:14 +0000
commit2f8ab8f9ff5f880957a75f583a3fb87de9f6747f (patch)
treebbd6661928099d936a54567c34953de3e4130f03 /tests/org.eclipse.emf.teneo.commontest
parente12897f35d4ba2662cc3bafde8da46ba82711b3f (diff)
downloadorg.eclipse.emf.teneo-2f8ab8f9ff5f880957a75f583a3fb87de9f6747f.tar.gz
org.eclipse.emf.teneo-2f8ab8f9ff5f880957a75f583a3fb87de9f6747f.tar.xz
org.eclipse.emf.teneo-2f8ab8f9ff5f880957a75f583a3fb87de9f6747f.zip
[242479]
Diffstat (limited to 'tests/org.eclipse.emf.teneo.commontest')
-rw-r--r--tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/stores/TestStore.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/stores/TestStore.java b/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/stores/TestStore.java
index f375af7a7..504245d91 100644
--- a/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/stores/TestStore.java
+++ b/tests/org.eclipse.emf.teneo.commontest/src/org/eclipse/emf/teneo/test/stores/TestStore.java
@@ -24,7 +24,7 @@ import org.eclipse.emf.teneo.annotations.pannotation.InheritanceType;
* this way different test cases can be reused.
*
* @author <a href="mailto:mtaal@elver.org">Martin Taal</a>
- * @version $Revision: 1.11 $
+ * @version $Revision: 1.12 $
*/
public interface TestStore {
@@ -82,7 +82,7 @@ public interface TestStore {
public <T> T getObject(Class<T> clazz);
/** Returns a list of object of a certain class */
- public List<?> getObjects(Class<?> clazz);
+ public <T> List<T> getObjects(Class<T> clazz);
/** Deletes an object */
public void deleteObject(Object obj);

Back to the top