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

Wed, 31 Oct 2012 13:48:15 -0700

author
jjg
date
Wed, 31 Oct 2012 13:48:15 -0700
changeset 1383
b980e8e6aabf
parent 1359
25e14ad23cef
child 1410
bfec2a1cc869
permissions
-rw-r--r--

8001664: refactor javadoc to use abstraction to handle files
Reviewed-by: darcy

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
bpatel@766 28 import java.util.*;
jjg@1357 29
jjg@1357 30 import com.sun.javadoc.*;
jjg@1357 31 import com.sun.tools.doclets.internal.toolkit.*;
duke@1 32 import com.sun.tools.doclets.internal.toolkit.util.*;
duke@1 33
duke@1 34 /**
duke@1 35 * Builds documentation for required annotation type members.
duke@1 36 *
jjg@1359 37 * <p><b>This is NOT part of any supported API.
jjg@1359 38 * If you write code that depends on this, you do so at your own risk.
jjg@1359 39 * This code and its internal interfaces are subject to change or
jjg@1359 40 * deletion without notice.</b>
duke@1 41 *
duke@1 42 * @author Jamie Ho
bpatel@766 43 * @author Bhavesh Patel (Modified)
duke@1 44 * @since 1.5
duke@1 45 */
duke@1 46 public class AnnotationTypeRequiredMemberBuilder extends AbstractMemberBuilder {
duke@1 47
duke@1 48 /**
duke@1 49 * The annotation type whose members are being documented.
duke@1 50 */
duke@1 51 protected ClassDoc classDoc;
duke@1 52
duke@1 53 /**
duke@1 54 * The visible members for the given class.
duke@1 55 */
duke@1 56 protected VisibleMemberMap visibleMemberMap;
duke@1 57
duke@1 58 /**
duke@1 59 * The writer to output the member documentation.
duke@1 60 */
duke@1 61 protected AnnotationTypeRequiredMemberWriter writer;
duke@1 62
duke@1 63 /**
duke@1 64 * The list of members being documented.
duke@1 65 */
jjg@74 66 protected List<ProgramElementDoc> members;
duke@1 67
duke@1 68 /**
duke@1 69 * The index of the current member that is being documented at this point
duke@1 70 * in time.
duke@1 71 */
duke@1 72 protected int currentMemberIndex;
duke@1 73
duke@1 74 /**
duke@1 75 * Construct a new AnnotationTypeRequiredMemberBuilder.
duke@1 76 *
duke@1 77 * @param configuration the current configuration of the
duke@1 78 * doclet.
duke@1 79 */
duke@1 80 protected AnnotationTypeRequiredMemberBuilder(Configuration configuration) {
duke@1 81 super(configuration);
duke@1 82 }
duke@1 83
duke@1 84
duke@1 85 /**
duke@1 86 * Construct a new AnnotationTypeMemberBuilder.
duke@1 87 *
duke@1 88 * @param configuration the current configuration of the doclet.
duke@1 89 * @param classDoc the class whoses members are being documented.
duke@1 90 * @param writer the doclet specific writer.
duke@1 91 */
duke@1 92 public static AnnotationTypeRequiredMemberBuilder getInstance(
duke@1 93 Configuration configuration, ClassDoc classDoc,
duke@1 94 AnnotationTypeRequiredMemberWriter writer) {
duke@1 95 AnnotationTypeRequiredMemberBuilder builder =
duke@1 96 new AnnotationTypeRequiredMemberBuilder(configuration);
duke@1 97 builder.classDoc = classDoc;
duke@1 98 builder.writer = writer;
duke@1 99 builder.visibleMemberMap = new VisibleMemberMap(classDoc,
duke@1 100 VisibleMemberMap.ANNOTATION_TYPE_MEMBER_REQUIRED, configuration.nodeprecated);
jjg@74 101 builder.members = new ArrayList<ProgramElementDoc>(
duke@1 102 builder.visibleMemberMap.getMembersFor(classDoc));
duke@1 103 if (configuration.getMemberComparator() != null) {
duke@1 104 Collections.sort(builder.members,
duke@1 105 configuration.getMemberComparator());
duke@1 106 }
duke@1 107 return builder;
duke@1 108 }
duke@1 109
duke@1 110 /**
duke@1 111 * {@inheritDoc}
duke@1 112 */
duke@1 113 public String getName() {
duke@1 114 return "AnnotationTypeRequiredMemberDetails";
duke@1 115 }
duke@1 116
duke@1 117 /**
duke@1 118 * Returns a list of members that will be documented for the given class.
duke@1 119 * This information can be used for doclet specific documentation
duke@1 120 * generation.
duke@1 121 *
duke@1 122 * @param classDoc the {@link ClassDoc} we want to check.
duke@1 123 * @return a list of members that will be documented.
duke@1 124 */
mcimadamore@184 125 public List<ProgramElementDoc> members(ClassDoc classDoc) {
duke@1 126 return visibleMemberMap.getMembersFor(classDoc);
duke@1 127 }
duke@1 128
duke@1 129 /**
duke@1 130 * Returns the visible member map for the members of this class.
duke@1 131 *
duke@1 132 * @return the visible member map for the members of this class.
duke@1 133 */
duke@1 134 public VisibleMemberMap getVisibleMemberMap() {
duke@1 135 return visibleMemberMap;
duke@1 136 }
duke@1 137
duke@1 138 /**
duke@1 139 * summaryOrder.size()
duke@1 140 */
duke@1 141 public boolean hasMembersToDocument() {
duke@1 142 return members.size() > 0;
duke@1 143 }
duke@1 144
duke@1 145 /**
bpatel@766 146 * Build the annotation type required member documentation.
bpatel@766 147 *
bpatel@766 148 * @param node the XML element that specifies which components to document
bpatel@766 149 * @param memberDetailsTree the content tree to which the documentation will be added
bpatel@766 150 */
bpatel@766 151 public void buildAnnotationTypeRequiredMember(XMLNode node, Content memberDetailsTree) {
bpatel@766 152 buildAnnotationTypeMember(node, memberDetailsTree);
bpatel@766 153 }
bpatel@766 154
bpatel@766 155 /**
duke@1 156 * Build the member documentation.
duke@1 157 *
bpatel@766 158 * @param node the XML element that specifies which components to document
bpatel@766 159 * @param memberDetailsTree the content tree to which the documentation will be added
duke@1 160 */
bpatel@766 161 public void buildAnnotationTypeMember(XMLNode node, Content memberDetailsTree) {
duke@1 162 if (writer == null) {
duke@1 163 return;
duke@1 164 }
bpatel@766 165 int size = members.size();
bpatel@766 166 if (size > 0) {
bpatel@766 167 writer.addAnnotationDetailsTreeHeader(
bpatel@766 168 classDoc, memberDetailsTree);
bpatel@766 169 for (currentMemberIndex = 0; currentMemberIndex < size;
duke@1 170 currentMemberIndex++) {
bpatel@766 171 Content annotationDocTree = writer.getAnnotationDocTreeHeader(
bpatel@766 172 (MemberDoc) members.get(currentMemberIndex),
bpatel@766 173 memberDetailsTree);
bpatel@766 174 buildChildren(node, annotationDocTree);
bpatel@766 175 memberDetailsTree.addContent(writer.getAnnotationDoc(
bpatel@766 176 annotationDocTree, (currentMemberIndex == size - 1)));
bpatel@766 177 }
duke@1 178 }
duke@1 179 }
duke@1 180
duke@1 181 /**
bpatel@766 182 * Build the signature.
bpatel@766 183 *
bpatel@766 184 * @param node the XML element that specifies which components to document
bpatel@766 185 * @param annotationDocTree the content tree to which the documentation will be added
duke@1 186 */
bpatel@766 187 public void buildSignature(XMLNode node, Content annotationDocTree) {
bpatel@766 188 annotationDocTree.addContent(
bpatel@766 189 writer.getSignature((MemberDoc) members.get(currentMemberIndex)));
duke@1 190 }
duke@1 191
duke@1 192 /**
duke@1 193 * Build the deprecation information.
bpatel@766 194 *
bpatel@766 195 * @param node the XML element that specifies which components to document
bpatel@766 196 * @param annotationDocTree the content tree to which the documentation will be added
duke@1 197 */
bpatel@766 198 public void buildDeprecationInfo(XMLNode node, Content annotationDocTree) {
bpatel@766 199 writer.addDeprecated((MemberDoc) members.get(currentMemberIndex),
bpatel@766 200 annotationDocTree);
duke@1 201 }
duke@1 202
duke@1 203 /**
duke@1 204 * Build the comments for the member. Do nothing if
duke@1 205 * {@link Configuration#nocomment} is set to true.
bpatel@766 206 *
bpatel@766 207 * @param node the XML element that specifies which components to document
bpatel@766 208 * @param annotationDocTree the content tree to which the documentation will be added
duke@1 209 */
bpatel@766 210 public void buildMemberComments(XMLNode node, Content annotationDocTree) {
duke@1 211 if(! configuration.nocomment){
bpatel@766 212 writer.addComments((MemberDoc) members.get(currentMemberIndex),
bpatel@766 213 annotationDocTree);
duke@1 214 }
duke@1 215 }
duke@1 216
duke@1 217 /**
duke@1 218 * Build the tag information.
bpatel@766 219 *
bpatel@766 220 * @param node the XML element that specifies which components to document
bpatel@766 221 * @param annotationDocTree the content tree to which the documentation will be added
duke@1 222 */
bpatel@766 223 public void buildTagInfo(XMLNode node, Content annotationDocTree) {
bpatel@766 224 writer.addTags((MemberDoc) members.get(currentMemberIndex),
bpatel@766 225 annotationDocTree);
duke@1 226 }
duke@1 227
duke@1 228 /**
duke@1 229 * Return the annotation type required member writer for this builder.
duke@1 230 *
duke@1 231 * @return the annotation type required member constant writer for this
duke@1 232 * builder.
duke@1 233 */
duke@1 234 public AnnotationTypeRequiredMemberWriter getWriter() {
duke@1 235 return writer;
duke@1 236 }
duke@1 237 }

mercurial