Klasse AbstractBuilder
java.lang.Object
org.jdrupes.mdoclet.internal.doclets.toolkit.builders.AbstractBuilder
- Bekannte direkte Unterklassen:
AbstractMemberBuilder
,ClassBuilder
,ConstantsSummaryBuilder
,ModuleSummaryBuilder
,PackageSummaryBuilder
,SerializedFormBuilder
The superclass for all builders.
A builder is a class that provides
the structure and content of API documentation. A builder is completely
doclet independent which means that any doclet can use builders to
construct documentation, as long as it implements the appropriate
writer interfaces. For example, if a doclet wanted to use
ConstantsSummaryBuilder
to build a constant summary, all it has to
do is implement the ConstantsSummaryWriter interface and pass it to the
builder using a WriterFactory.
-
Verschachtelte Klassen - Übersicht
-
Feldübersicht
Modifizierer und TypFeldBeschreibungprotected final BuilderFactory
protected final BaseConfiguration
The configuration used in this run of the doclet.protected final Set
<PackageElement> Keep track of which packages we have seen for efficiency purposes.protected final Messages
protected final BaseOptions
protected final Resources
protected final Utils
-
Konstruktorübersicht
-
Methodenübersicht
-
Felddetails
-
configuration
The configuration used in this run of the doclet. -
options
-
builderFactory
-
messages
-
resources
-
utils
-
containingPackagesSeen
Keep track of which packages we have seen for efficiency purposes.We don’t want to copy the doc files multiple times for a single package.
-
-
Konstruktordetails
-
AbstractBuilder
Construct a Builder.- Parameter:
c
- a context providing information used in this run of the doclet
-
-
Methodendetails
-
build
Build the documentation.- Löst aus:
DocletException
- if there is a problem building the documentation
-