Add methods required by Java 1.8

This commit is contained in:
Diomidis Spinellis 2014-10-28 16:38:14 +02:00
parent ac69e12d7a
commit d46829bb01
2 changed files with 9 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* Automatically generated file */
package org.umlgraph.doclet;
class Version { public static String VERSION = "R5_6_6-10-gc1d994";}
class Version { public static String VERSION = "R5_6_6-11-gac69e1";}

View File

@ -19,6 +19,7 @@
package org.umlgraph.doclet;
import com.sun.javadoc.AnnotatedType;
import com.sun.javadoc.AnnotationDesc;
import com.sun.javadoc.AnnotationTypeDoc;
import com.sun.javadoc.ClassDoc;
@ -358,4 +359,11 @@ public class WrappedClassDoc implements ClassDoc {
return wrapped.typeParamTags();
}
public AnnotatedType asAnnotatedType() {
return wrapped.asAnnotatedType();
}
public Type getElementType() {
return wrapped.getElementType();
}
}