mirror of https://github.com/dspinellis/UMLGraph
Add methods required by Java 1.8
This commit is contained in:
parent
ac69e12d7a
commit
d46829bb01
|
|
@ -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";}
|
||||
|
||||
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue