/** Build the overall footer. */ public void buildFooter() { writer.writeFooter(classDoc); }
/** Build the tag information. */ public void buildTagInfo() { writer.writeTags((FieldDoc) fields.get(currentFieldIndex)); }
/** Build the footer for the individual field. */ public void buildFieldFooter() { writer.writeFieldFooter(); }
/** * 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)); } }
/** Build the deprecation information. */ public void buildDeprecationInfo() { writer.writeDeprecated((FieldDoc) fields.get(currentFieldIndex)); }
/** Build the signature. */ public void buildSignature() { writer.writeSignature((FieldDoc) fields.get(currentFieldIndex)); }
/** Build the header for the individual field. */ public void buildFieldHeader() { writer.writeFieldHeader((FieldDoc) fields.get(currentFieldIndex), currentFieldIndex == 0); }
/** Build the overall header. */ public void buildHeader() { writer.writeHeader(classDoc, configuration.getText("doclet.Field_Detail")); }