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

Tue, 25 May 2010 15:54:51 -0700

author
ohair
date
Tue, 25 May 2010 15:54:51 -0700
changeset 554
9d9f26857129
parent 184
905e151a185a
child 589
4177f5bdd189
permissions
-rw-r--r--

6943119: Rebrand source copyright notices
Reviewed-by: darcy

duke@1 1 /*
ohair@554 2 * Copyright (c) 2003, 2008, 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
duke@1 28 import com.sun.tools.doclets.internal.toolkit.util.*;
duke@1 29 import com.sun.tools.doclets.internal.toolkit.*;
duke@1 30 import com.sun.javadoc.*;
duke@1 31 import java.lang.reflect.*;
duke@1 32 import java.util.*;
duke@1 33
duke@1 34 /**
duke@1 35 * Builds documentation for a constructor.
duke@1 36 *
duke@1 37 * This code is not part of an API.
duke@1 38 * It is implementation that is subject to change.
duke@1 39 * Do not use it as an API
duke@1 40 *
duke@1 41 * @author Jamie Ho
duke@1 42 * @since 1.5
duke@1 43 */
duke@1 44 public class ConstructorBuilder extends AbstractMemberBuilder {
duke@1 45
duke@1 46 /**
duke@1 47 * The name of this builder.
duke@1 48 */
duke@1 49 public static final String NAME = "ConstructorDetails";
duke@1 50
duke@1 51 /**
duke@1 52 * The index of the current field that is being documented at this point
duke@1 53 * in time.
duke@1 54 */
duke@1 55 private int currentMethodIndex;
duke@1 56
duke@1 57 /**
duke@1 58 * The class whose constructors are being documented.
duke@1 59 */
duke@1 60 private ClassDoc classDoc;
duke@1 61
duke@1 62 /**
duke@1 63 * The visible constructors for the given class.
duke@1 64 */
duke@1 65 private VisibleMemberMap visibleMemberMap;
duke@1 66
duke@1 67 /**
duke@1 68 * The writer to output the constructor documentation.
duke@1 69 */
duke@1 70 private ConstructorWriter writer;
duke@1 71
duke@1 72 /**
duke@1 73 * The constructors being documented.
duke@1 74 */
jjg@74 75 private List<ProgramElementDoc> constructors;
duke@1 76
duke@1 77 /**
duke@1 78 * Construct a new ConstructorBuilder.
duke@1 79 *
duke@1 80 * @param configuration the current configuration of the
duke@1 81 * doclet.
duke@1 82 */
duke@1 83 private ConstructorBuilder(Configuration configuration) {
duke@1 84 super(configuration);
duke@1 85 }
duke@1 86
duke@1 87 /**
duke@1 88 * Construct a new ConstructorBuilder.
duke@1 89 *
duke@1 90 * @param configuration the current configuration of the doclet.
duke@1 91 * @param classDoc the class whoses members are being documented.
duke@1 92 * @param writer the doclet specific writer.
duke@1 93 */
duke@1 94 public static ConstructorBuilder getInstance(
duke@1 95 Configuration configuration,
duke@1 96 ClassDoc classDoc,
duke@1 97 ConstructorWriter writer) {
duke@1 98 ConstructorBuilder builder = new ConstructorBuilder(configuration);
duke@1 99 builder.classDoc = classDoc;
duke@1 100 builder.writer = writer;
duke@1 101 builder.visibleMemberMap =
duke@1 102 new VisibleMemberMap(
duke@1 103 classDoc,
duke@1 104 VisibleMemberMap.CONSTRUCTORS,
duke@1 105 configuration.nodeprecated);
duke@1 106 builder.constructors =
jjg@74 107 new ArrayList<ProgramElementDoc>(builder.visibleMemberMap.getMembersFor(classDoc));
duke@1 108 for (int i = 0; i < builder.constructors.size(); i++) {
jjg@74 109 if (builder.constructors.get(i).isProtected()
jjg@74 110 || builder.constructors.get(i).isPrivate()) {
duke@1 111 writer.setFoundNonPubConstructor(true);
duke@1 112 }
duke@1 113 }
duke@1 114 if (configuration.getMemberComparator() != null) {
duke@1 115 Collections.sort(
duke@1 116 builder.constructors,
duke@1 117 configuration.getMemberComparator());
duke@1 118 }
duke@1 119 return builder;
duke@1 120 }
duke@1 121
duke@1 122 /**
duke@1 123 * {@inheritDoc}
duke@1 124 */
duke@1 125 public String getName() {
duke@1 126 return NAME;
duke@1 127 }
duke@1 128
duke@1 129 /**
duke@1 130 * {@inheritDoc}
duke@1 131 */
duke@1 132 public boolean hasMembersToDocument() {
duke@1 133 return constructors.size() > 0;
duke@1 134 }
duke@1 135
duke@1 136 /**
duke@1 137 * {@inheritDoc}
duke@1 138 */
duke@1 139 public void invokeMethod(
duke@1 140 String methodName,
mcimadamore@184 141 Class<?>[] paramClasses,
duke@1 142 Object[] params)
duke@1 143 throws Exception {
duke@1 144 if (DEBUG) {
duke@1 145 configuration.root.printError(
duke@1 146 "DEBUG: " + this.getClass().getName() + "." + methodName);
duke@1 147 }
duke@1 148 Method method = this.getClass().getMethod(methodName, paramClasses);
duke@1 149 method.invoke(this, params);
duke@1 150 }
duke@1 151
duke@1 152 /**
duke@1 153 * Returns a list of constructors that will be documented for the given class.
duke@1 154 * This information can be used for doclet specific documentation
duke@1 155 * generation.
duke@1 156 *
duke@1 157 * @return a list of constructors that will be documented.
duke@1 158 */
mcimadamore@184 159 public List<ProgramElementDoc> members(ClassDoc classDoc) {
duke@1 160 return visibleMemberMap.getMembersFor(classDoc);
duke@1 161 }
duke@1 162
duke@1 163 /**
duke@1 164 * Return the constructor writer for this builder.
duke@1 165 *
duke@1 166 * @return the constructor writer for this builder.
duke@1 167 */
duke@1 168 public ConstructorWriter getWriter() {
duke@1 169 return writer;
duke@1 170 }
duke@1 171
duke@1 172 /**
duke@1 173 * Build the constructor documentation.
duke@1 174 *
duke@1 175 * @param elements the XML elements that specify how to construct this
duke@1 176 * documentation.
duke@1 177 */
mcimadamore@184 178 public void buildConstructorDoc(List<?> elements) {
duke@1 179 if (writer == null) {
duke@1 180 return;
duke@1 181 }
duke@1 182 for (currentMethodIndex = 0;
duke@1 183 currentMethodIndex < constructors.size();
duke@1 184 currentMethodIndex++) {
duke@1 185 build(elements);
duke@1 186 }
duke@1 187 }
duke@1 188
duke@1 189 /**
duke@1 190 * Build the overall header.
duke@1 191 */
duke@1 192 public void buildHeader() {
duke@1 193 writer.writeHeader(
duke@1 194 classDoc,
duke@1 195 configuration.getText("doclet.Constructor_Detail"));
duke@1 196 }
duke@1 197
duke@1 198 /**
duke@1 199 * Build the header for the individual constructor.
duke@1 200 */
duke@1 201 public void buildConstructorHeader() {
duke@1 202 writer.writeConstructorHeader(
duke@1 203 (ConstructorDoc) constructors.get(currentMethodIndex),
duke@1 204 currentMethodIndex == 0);
duke@1 205 }
duke@1 206
duke@1 207 /**
duke@1 208 * Build the signature.
duke@1 209 */
duke@1 210 public void buildSignature() {
duke@1 211 writer.writeSignature(
duke@1 212 (ConstructorDoc) constructors.get(currentMethodIndex));
duke@1 213 }
duke@1 214
duke@1 215 /**
duke@1 216 * Build the deprecation information.
duke@1 217 */
duke@1 218 public void buildDeprecationInfo() {
duke@1 219 writer.writeDeprecated(
duke@1 220 (ConstructorDoc) constructors.get(currentMethodIndex));
duke@1 221 }
duke@1 222
duke@1 223 /**
duke@1 224 * Build the comments for the constructor. Do nothing if
duke@1 225 * {@link Configuration#nocomment} is set to true.
duke@1 226 */
duke@1 227 public void buildConstructorComments() {
duke@1 228 if (!configuration.nocomment) {
duke@1 229 writer.writeComments(
duke@1 230 (ConstructorDoc) constructors.get(currentMethodIndex));
duke@1 231 }
duke@1 232 }
duke@1 233
duke@1 234 /**
duke@1 235 * Build the tag information.
duke@1 236 */
duke@1 237 public void buildTagInfo() {
duke@1 238 writer.writeTags((ConstructorDoc) constructors.get(currentMethodIndex));
duke@1 239 }
duke@1 240
duke@1 241 /**
duke@1 242 * Build the footer for the individual constructor.
duke@1 243 */
duke@1 244 public void buildConstructorFooter() {
duke@1 245 writer.writeConstructorFooter();
duke@1 246 }
duke@1 247
duke@1 248 /**
duke@1 249 * Build the overall footer.
duke@1 250 */
duke@1 251 public void buildFooter() {
duke@1 252 writer.writeFooter(classDoc);
duke@1 253 }
duke@1 254 }

mercurial