Example #1
0
 /** Build the overall footer. */
 public void buildFooter() {
   writer.writeFooter(classDoc);
 }
Example #2
0
 /** Build the tag information. */
 public void buildTagInfo() {
   writer.writeTags((FieldDoc) enumConstants.get(currentEnumConstantsIndex));
 }
Example #3
0
 /** Build the footer for the individual enum constants. */
 public void buildEnumConstantFooter() {
   writer.writeEnumConstantFooter();
 }
Example #4
0
 /**
  * Build the comments for the enum constant. Do nothing if {@link Configuration#nocomment} is set
  * to true.
  */
 public void buildEnumConstantComments() {
   if (!configuration.nocomment) {
     writer.writeComments((FieldDoc) enumConstants.get(currentEnumConstantsIndex));
   }
 }
Example #5
0
 /** Build the deprecation information. */
 public void buildDeprecationInfo() {
   writer.writeDeprecated((FieldDoc) enumConstants.get(currentEnumConstantsIndex));
 }
Example #6
0
 /** Build the signature. */
 public void buildSignature() {
   writer.writeSignature((FieldDoc) enumConstants.get(currentEnumConstantsIndex));
 }
Example #7
0
 /** Build the header for the individual enum constants. */
 public void buildEnumConstantHeader() {
   writer.writeEnumConstantHeader(
       (FieldDoc) enumConstants.get(currentEnumConstantsIndex), currentEnumConstantsIndex == 0);
 }
Example #8
0
 /** Build the overall header. */
 public void buildHeader() {
   writer.writeHeader(classDoc, configuration.getText("doclet.Enum_Constant_Detail"));
 }