src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/AnnotationTypeOptionalMemberBuilder.java

Mon, 19 Nov 2012 16:10:34 -0800

author
bpatel
date
Mon, 19 Nov 2012 16:10:34 -0800
changeset 1417
522a1ee72340
parent 1410
bfec2a1cc869
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8002304: Group methods by types in methods summary section
Reviewed-by: jjg

duke@1 1 /*
jjg@1357 2 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
duke@1 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 *
duke@1 5 * This code is free software; you can redistribute it and/or modify it
duke@1 6 * under the terms of the GNU General Public License version 2 only, as
ohair@554 7 * published by the Free Software Foundation. Oracle designates this
duke@1 8 * particular file as subject to the "Classpath" exception as provided
ohair@554 9 * by Oracle in the LICENSE file that accompanied this code.
duke@1 10 *
duke@1 11 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 14 * version 2 for more details (a copy is included in the LICENSE file that
duke@1 15 * accompanied this code).
duke@1 16 *
duke@1 17 * You should have received a copy of the GNU General Public License version
duke@1 18 * 2 along with this work; if not, write to the Free Software Foundation,
duke@1 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 20 *
ohair@554 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@554 22 * or visit www.oracle.com if you need additional information or have any
ohair@554 23 * questions.
duke@1 24 */
duke@1 25
duke@1 26 package com.sun.tools.doclets.internal.toolkit.builders;
duke@1 27
jjg@1357 28 import com.sun.javadoc.*;
jjg@1357 29 import com.sun.tools.doclets.internal.toolkit.*;
duke@1 30 import com.sun.tools.doclets.internal.toolkit.util.*;
duke@1 31
duke@1 32 /**
duke@1 33 * Builds documentation for optional annotation type members.
duke@1 34 *
jjg@1359 35 * <p><b>This is NOT part of any supported API.
jjg@1359 36 * If you write code that depends on this, you do so at your own risk.
jjg@1359 37 * This code and its internal interfaces are subject to change or
jjg@1359 38 * deletion without notice.</b>
duke@1 39 *
duke@1 40 * @author Jamie Ho
bpatel@766 41 * @author Bhavesh Patel (Modified)
duke@1 42 * @since 1.5
duke@1 43 */
duke@1 44 public class AnnotationTypeOptionalMemberBuilder extends
jjg@1410 45 AnnotationTypeRequiredMemberBuilder {
duke@1 46
duke@1 47
duke@1 48 /**
duke@1 49 * Construct a new AnnotationTypeMemberBuilder.
duke@1 50 *
jjg@1410 51 * @param context the build context.
jjg@1410 52 * @param classDoc the class whose members are being documented.
jjg@1410 53 * @param writer the doclet specific writer.
duke@1 54 */
jjg@1410 55 private AnnotationTypeOptionalMemberBuilder(Context context,
jjg@1410 56 ClassDoc classDoc,
jjg@1410 57 AnnotationTypeOptionalMemberWriter writer) {
jjg@1410 58 super(context, classDoc, writer,
jjg@1410 59 VisibleMemberMap.ANNOTATION_TYPE_MEMBER_OPTIONAL);
duke@1 60 }
duke@1 61
duke@1 62
duke@1 63 /**
duke@1 64 * Construct a new AnnotationTypeMemberBuilder.
duke@1 65 *
jjg@1410 66 * @param context the build context.
jjg@1410 67 * @param classDoc the class whose members are being documented.
duke@1 68 * @param writer the doclet specific writer.
duke@1 69 */
duke@1 70 public static AnnotationTypeOptionalMemberBuilder getInstance(
jjg@1410 71 Context context, ClassDoc classDoc,
duke@1 72 AnnotationTypeOptionalMemberWriter writer) {
jjg@1410 73 return new AnnotationTypeOptionalMemberBuilder(context,
jjg@1410 74 classDoc, writer);
duke@1 75 }
duke@1 76
duke@1 77 /**
duke@1 78 * {@inheritDoc}
duke@1 79 */
jjg@589 80 @Override
duke@1 81 public String getName() {
duke@1 82 return "AnnotationTypeOptionalMemberDetails";
duke@1 83 }
duke@1 84
duke@1 85 /**
bpatel@766 86 * Build the annotation type optional member documentation.
duke@1 87 *
bpatel@766 88 * @param node the XML element that specifies which components to document
bpatel@766 89 * @param memberDetailsTree the content tree to which the documentation will be added
duke@1 90 */
bpatel@766 91 public void buildAnnotationTypeOptionalMember(XMLNode node, Content memberDetailsTree) {
bpatel@766 92 buildAnnotationTypeMember(node, memberDetailsTree);
duke@1 93 }
duke@1 94
duke@1 95 /**
bpatel@766 96 * Build the default value for this optional member.
bpatel@766 97 *
bpatel@766 98 * @param node the XML element that specifies which components to document
bpatel@766 99 * @param annotationDocTree the content tree to which the documentation will be added
duke@1 100 */
bpatel@766 101 public void buildDefaultValueInfo(XMLNode node, Content annotationDocTree) {
bpatel@766 102 ((AnnotationTypeOptionalMemberWriter) writer).addDefaultValueInfo(
bpatel@766 103 (MemberDoc) members.get(currentMemberIndex),
bpatel@766 104 annotationDocTree);
duke@1 105 }
duke@1 106
duke@1 107 /**
duke@1 108 * {@inheritDoc}
duke@1 109 */
jjg@589 110 @Override
duke@1 111 public AnnotationTypeRequiredMemberWriter getWriter() {
duke@1 112 return writer;
duke@1 113 }
duke@1 114 }

mercurial