デフォルトでは、このメソッドは LanguageVersion.JAVA_1_1 を返します。このメソッドが LanguageVersion.JAVA_1_5 を返すようメソッドをオーバーライドしてください。
// If true, Type must be a primitive Type.asClassDoc() == nullバージョン 5.0 では、このコードは適切に動作しません。プリミティブ型以外にも、ClassDoc 型ではない型が存在するようになったからです。たとえば、注釈型に対しても asClassDoc メソッドは null を返します。したがって、「Type.asClassDoc() == null」というコードをすべて、「Type.isPrimitive()」に置き換える必要があります。
次のインタフェースが、型変数を表しています。
次に示すのは、型パラメータを処理するために標準ドックレットが使用するアルゴリズムです。
if (type.asTypeVariable()!= null) { Doc owner = type.asTypeVariable().owner(); if (owner instanceof ClassDoc) { // Generate Link to type Parameter } else { // No need to link method type parameters. // Append the name of the type parameter } Type[] bounds = type.asTypeVariable().bounds(); if (! linkInfo.excludeTypeBounds) { for (int i = 0; i < bounds.length; i++) { // If i greater than 0, append " & ". Otherwise, append " extends " // Generate a link to the bound } } }
/** * @param <E> the type parameter for this class. */ public class Foo<E>これらの型パラメータの @param タグを取得するには、ClassDoc.typeParamTags() または ExecutableMemberDoc.typeParamTags() を呼び出します。
型パラメータのタグを通常のパラメータのタグと区別するには、ParamTag.isTypeParameter() を呼び出します。
com.sun.javadoc.AnnotationTypeDoc
注釈型の要素を取得するには、メソッド elements() を呼び出します。要素には次の 2 種類があります。
com.sun.javadoc.AnnotationDesc
AnnotationDesc オブジェクトのリストを反復処理して、各オブジェクトを処理します。次に示すのは、AnnotationDesc オブジェクトを処理するために標準ドックレットが使用するアルゴリズムです。
for (int i = 0; i < descList.length; i++) { AnnotationTypeDoc annotationDoc = descList[i].annotationType(); if (/**annotationDoc does not have @documented annotation**/){ // ONLY document annotations if they have @documented. continue; } // Generate a link to the annotation. Start with the ?@? character> AnnotationDesc.ElementValuePair[] pairs = descList[i].elementValues(); if (pairs.length > 0) { // Append '(' to indicate start of element list> for (int j = 0; j < pairs.length; j++) { if (j > 0) { // Append ',' to separate previous element from the next> } // Generate a link to the annotation element> // Append '=' to separate element name from value> AnnotationValue annotationValue = pairs[j].value(); List annotationTypeValues = new ArrayList(); if (annotationValue.value() instanceof AnnotationValue[]) { AnnotationValue[] annotationArray = (AnnotationValue[]) annotationValue.value(); for (int k = 0; k < annotationArray.length; k++) { annotationTypeValues.add(annotationArray[k]); } } else { annotationTypeValues.add(annotationValue); } // Append '{' if this is an array of values for (Iterator iter = annotationTypeValues.iterator(); iter.hasNext(); ) { // Append string representation of value // Append ?,? if there is more to append } // Append '}' if this is an array of values } // Append ')' if this is an array of values } }次に示すのは、出力の例です。
注釈の値は、次のいずれかになります。
if (annotationValue.value() instanceof Type) { Type type = (Type) annotationValue.value(); if (type.asClassDoc() != null) { LinkInfoImpl linkInfo = new LinkInfoImpl( LinkInfoImpl.CONTEXT_ANNOTATION, type); linkInfo.label = (type.asClassDoc().isIncluded() ? type.typeName() : type.qualifiedTypeName()) + type.dimension() + ".class "; return getLink(linkInfo); } else { return type.typeName() + type.dimension() + ".class"; } } else if (annotationValue.value() instanceof AnnotationDesc) { // Handle nested annotations using recursion. List list = getAnnotations( new AnnotationDesc[]{(AnnotationDesc) annotationValue.value()}, false); StringBuffer buf = new StringBuffer(); for (Iterator iter = list.iterator(); iter.hasNext(); ) { buf.append(iter.next()); } return buf.toString(); } else if (annotationValue.value() instanceof MemberDoc) { // Simply link to the member being references in the annotation. return getDocLink(LinkInfoImpl.CONTEXT_ANNOTATION, (MemberDoc) annotationValue.value(), ((MemberDoc) annotationValue.value()).name(), false); } else { return annotationValue.toString(); }
次に示すのは、列挙型の文書の例です。
java.lang.management.MemoryType.html
if (isVarArg) { if (type.dimension().length() > 2) { // Doclet API returns var args as array. // Strip out the first [] from the var arg. // Append type.dimension().substring(2) } // Append "..." } else { // Append type.dimension() }このコードは、配列の大きさを通常どおりにドキュメント化する箇所に挿入する必要のあるコードです。コメントに、var arg が配列としてドックレット API から返されると書かれていることに注目してください。最初の「[]」を除去しているのは、それが var arg の内部表現の一部にすぎず、文書に含める必要がないからです。
ワイルドカードに遭遇したときは、拡張クラスとスーパークラスの境界のリストを反復処理します。各境界は、通常の型を処理するのと同じ方法で処理します。次に示すのは、ワイルドカードを処理するために標準ドックレットが使用するアルゴリズムです。
if (type.asWildcardType() != null) { WildcardType wildcardType = type.asWildcardType(); Type[] extendsBounds = wildcardType.extendsBounds(); for (int i = 0; i < extendsBounds.length; i++) { // If i greater than 0, append " , ". Otherwise, append " extends " // Generate link to extendsBounds[i]) } Type[] superBounds = wildcardType.superBounds(); for (int i = 0; i < superBounds.length; i++) { // If i greater than 0, append " , ". Otherwise, append " super " // Generate link to superBounds[i]) } }