Schnittstelle MemberSummaryWriter
- Alle bekannten Implementierungsklassen:
AbstractExecutableMemberWriter
,AbstractMemberWriter
,AnnotationTypeMemberWriterImpl
,ConstructorWriterImpl
,EnumConstantWriterImpl
,FieldWriterImpl
,HtmlSerialFieldWriter
,HtmlSerialMethodWriter
,MethodWriterImpl
,NestedClassWriterImpl
,PropertyWriterImpl
public interface MemberSummaryWriter
The interface for writing member summary output.
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoid
addInheritedMemberSummary
(TypeElement typeElement, Element member, boolean isFirst, boolean isLast, Content content) Adds the inherited member summary for the given class and member.void
addMemberSummary
(TypeElement typeElement, Element member, List<? extends DocTree> firstSentenceTrees) Adds the member summary for the given class and member.void
addSummary
(Content summariesList, Content content) Adds the given summary to the list of summaries.getInheritedSummaryHeader
(TypeElement typeElement) Returns the inherited member summary header for the given class.Returns the inherited summary links.Returns the member content.getMemberSummaryHeader
(TypeElement typeElement, Content content) Returns the member summary header for the given class.getSummaryTable
(TypeElement typeElement) Returns the summary table for the given class.
-
Methodendetails
-
getMemberSummaryHeader
Returns the member summary header for the given class.- Parameter:
typeElement
- the class the summary belongs tocontent
- the content to which the member summary will be added- Gibt zurück:
- the member summary header
-
getSummaryTable
Returns the summary table for the given class.- Parameter:
typeElement
- the class the summary table belongs to- Gibt zurück:
- the summary table
-
addMemberSummary
void addMemberSummary(TypeElement typeElement, Element member, List<? extends DocTree> firstSentenceTrees) Adds the member summary for the given class and member.- Parameter:
typeElement
- the class the summary belongs tomember
- the member that is documentedfirstSentenceTrees
- the tags for the sentence being documented
-
getInheritedSummaryHeader
Returns the inherited member summary header for the given class.- Parameter:
typeElement
- the class the summary belongs to- Gibt zurück:
- the inherited member summary header
-
addInheritedMemberSummary
void addInheritedMemberSummary(TypeElement typeElement, Element member, boolean isFirst, boolean isLast, Content content) Adds the inherited member summary for the given class and member.- Parameter:
typeElement
- the class the inherited member belongs tomember
- the inherited member that is being documentedisFirst
- true if this is the first member in the listisLast
- true if this is the last member in the listcontent
- the content to which the links will be added
-
getInheritedSummaryLinks
Returns the inherited summary links.- Gibt zurück:
- the inherited summary links
-
addSummary
Adds the given summary to the list of summaries.- Parameter:
summariesList
- the list of summariescontent
- the summary
-
getMember
Returns the member content.- Parameter:
memberContent
- the content representing the member- Gibt zurück:
- the member content
-