Class AbstractMemberBuilder
java.lang.Object
gw.gosudoc.com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder
gw.gosudoc.com.sun.tools.doclets.internal.toolkit.builders.AbstractMemberBuilder
- Direct Known Subclasses:
AnnotationTypeFieldBuilder
,AnnotationTypeRequiredMemberBuilder
,ConstructorBuilder
,EnumConstantBuilder
,FieldBuilder
,MemberSummaryBuilder
,MethodBuilder
,PropertyBuilder
Deprecated.
The superclass for all member builders. Member builders are only executed
within Class Builders. They essentially build sub-components. For example,
method documentation is a sub-component of class documentation.
This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.
- Since:
- 1.5
-
Nested Class Summary
Nested classes/interfaces inherited from class gw.gosudoc.com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder
AbstractBuilder.Context
-
Field Summary
Fields inherited from class gw.gosudoc.com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder
configuration, containingPackagesSeen, DEBUG, layoutParser, utils
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Construct a SubBuilder. -
Method Summary
Modifier and TypeMethodDescriptionvoid
build()
Deprecated.This method is not supported by sub-builders.void
Deprecated.Build the sub component if there is anything to document.abstract boolean
Deprecated.Return true if this subbuilder has anything to document.Methods inherited from class gw.gosudoc.com.sun.tools.doclets.internal.toolkit.builders.AbstractBuilder
buildChildren, getName, invokeMethod
-
Constructor Details
-
AbstractMemberBuilder
Deprecated.Construct a SubBuilder.- Parameters:
configuration
- the configuration used in this run of the doclet.
-
-
Method Details
-
build
Deprecated.This method is not supported by sub-builders.- Specified by:
build
in classAbstractBuilder
- Throws:
DocletAbortException
- this method will always throw a DocletAbortException because it is not supported.
-
build
Deprecated.Build the sub component if there is anything to document.- Overrides:
build
in classAbstractBuilder
- Parameters:
node
- the XML element that specifies which components to document.contentTree
- content tree to which the documentation will be added
-
hasMembersToDocument
public abstract boolean hasMembersToDocument()Deprecated.Return true if this subbuilder has anything to document.- Returns:
- true if this subbuilder has anything to document.
-