summaryrefslogtreecommitdiff
path: root/www-servers/resin/files/4.0.46/VarType.java.patch
blob: 05f03f214cb2695373f249067479607bffa45c59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
--- modules/kernel/src/com/caucho/config/reflect/VarType.java.orig	2015-08-12 21:05:11.892000000 +0000
+++ modules/kernel/src/com/caucho/config/reflect/VarType.java	2015-08-12 21:06:04.475000000 +0000
@@ -33,6 +33,7 @@
 import java.lang.reflect.GenericDeclaration;
 import java.lang.reflect.Type;
 import java.lang.reflect.TypeVariable;
+import java.lang.reflect.AnnotatedType;
 import java.util.Set;
 
 import com.caucho.inject.Module;
@@ -188,7 +189,23 @@
     
     return sb.toString();
   }
-  
+
+  public AnnotatedType[] getAnnotatedBounds() {
+      return null;
+  }
+
+  public Annotation[] getDeclaredAnnotations() {
+      return null;
+  }
+
+  public Annotation[] getAnnotations() {
+      return null;
+  }
+
+  public <T extends Annotation> T getAnnotation(Class<T> klass) {
+      return null;
+  }
+
   static class GenericDeclarationImpl implements GenericDeclaration {
     @Override
     public TypeVariable<?>[] getTypeParameters()