Esempio n. 1
0
 /** Build the overall footer. */
 public void buildFooter() {
   writer.writeFooter(classDoc);
 }
Esempio n. 2
0
 /** Build the tag information. */
 public void buildTagInfo() {
   writer.writeTags((FieldDoc) fields.get(currentFieldIndex));
 }
Esempio n. 3
0
 /** Build the footer for the individual field. */
 public void buildFieldFooter() {
   writer.writeFieldFooter();
 }
Esempio n. 4
0
 /**
  * Build the comments for the field. Do nothing if {@link Configuration#nocomment} is set to true.
  */
 public void buildFieldComments() {
   if (!configuration.nocomment) {
     writer.writeComments((FieldDoc) fields.get(currentFieldIndex));
   }
 }
Esempio n. 5
0
 /** Build the deprecation information. */
 public void buildDeprecationInfo() {
   writer.writeDeprecated((FieldDoc) fields.get(currentFieldIndex));
 }
Esempio n. 6
0
 /** Build the signature. */
 public void buildSignature() {
   writer.writeSignature((FieldDoc) fields.get(currentFieldIndex));
 }
Esempio n. 7
0
 /** Build the header for the individual field. */
 public void buildFieldHeader() {
   writer.writeFieldHeader((FieldDoc) fields.get(currentFieldIndex), currentFieldIndex == 0);
 }
Esempio n. 8
0
 /** Build the overall header. */
 public void buildHeader() {
   writer.writeHeader(classDoc, configuration.getText("doclet.Field_Detail"));
 }