Klasse AbstractMemberBuilder
java.lang.Object
org.jdrupes.mdoclet.internal.doclets.toolkit.builders.AbstractBuilder
org.jdrupes.mdoclet.internal.doclets.toolkit.builders.AbstractMemberBuilder
- Bekannte direkte Unterklassen:
AnnotationTypeMemberBuilder
,ConstructorBuilder
,EnumConstantBuilder
,FieldBuilder
,MemberSummaryBuilder
,MethodBuilder
,PropertyBuilder
The superclass for all member builders.
Member builders are only executed within Class Builders. They essentially build subcomponents. For example, method documentation is a subcomponent of class documentation.
-
Verschachtelte Klassen - Übersicht
Von Klasse geerbte verschachtelte Klassen/Schnittstellen org.jdrupes.mdoclet.internal.doclets.toolkit.builders.AbstractBuilder
AbstractBuilder.Context
-
Feldübersicht
Modifizierer und TypFeldBeschreibungprotected final TypeElement
protected final VisibleMemberTable
Von Klasse geerbte Felder org.jdrupes.mdoclet.internal.doclets.toolkit.builders.AbstractBuilder
builderFactory, configuration, containingPackagesSeen, messages, options, resources, utils
-
Konstruktorübersicht
KonstruktorBeschreibungAbstractMemberBuilder
(AbstractBuilder.Context context, TypeElement typeElement) Construct a SubBuilder. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungvoid
build()
This method is not supported by subbuilders.abstract void
Build the documentation.Returns a list of visible elements of the specified kind in this type element.abstract boolean
Returns true if this subbuilder has anything to document.
-
Felddetails
-
typeElement
-
visibleMemberTable
-
-
Konstruktordetails
-
AbstractMemberBuilder
Construct a SubBuilder.- Parameter:
context
- a context object, providing information used in this run of the doclet.
-
-
Methodendetails
-
build
This method is not supported by subbuilders.- Angegeben von:
build
in KlasseAbstractBuilder
- Löst aus:
AssertionError
- always
-
build
Build the documentation.- Parameter:
target
- the content into which to add the documentation- Löst aus:
DocletException
- if there is a problem building the documentation
-
hasMembersToDocument
Returns true if this subbuilder has anything to document.- Gibt zurück:
- true if this subbuilder has anything to document
-
getVisibleMembers
Returns a list of visible elements of the specified kind in this type element.- Parameter:
kind
- of members- Gibt zurück:
- a list of members
-