Sophie

Sophie

distrib > Mageia > 5 > i586 > by-pkgid > 92fcb525b14e8e17d69ce15f801fc693 > files > 1

jtype-0.1.2-10.mga5.src.rpm

--- src/main/java/com/googlecode/jtype/DefaultTypeVariable.java	2010-11-16 11:39:34.000000000 +0100
+++ src/main/java/com/googlecode/jtype/DefaultTypeVariable.java-gil	2014-04-02 13:06:29.646611388 +0200
@@ -120,6 +120,26 @@
 		return bounds.clone();
 	}
 	
+	public java.lang.reflect.AnnotatedType[] getAnnotatedBounds() {
+		// TODO add some implementation
+		return null;
+	}
+	
+	public java.lang.annotation.Annotation[] getDeclaredAnnotations() {
+		// TODO add some implementation
+		return null;
+	}
+	
+	public java.lang.annotation.Annotation[] getAnnotations() {
+		// TODO add some implementation
+		return null;
+	}
+	
+	public <T extends java.lang.annotation.Annotation> T getAnnotation(Class<T> annotationClass) {
+		// TODO add some implementation
+		return null;
+	}
+	
 	// Object methods ---------------------------------------------------------
 	
 	/**