Uses of Class
nl.talsmasoftware.umldoclet.rendering.indent.Indentation
Packages that use Indentation
Package
Description
Configuration guiding the details the way UML is generated.
Package for all Javadoc specific code in the doclet.
Package defining an Indentation concept.
-
Uses of Indentation in nl.talsmasoftware.umldoclet.configuration
Methods in nl.talsmasoftware.umldoclet.configuration that return Indentation -
Uses of Indentation in nl.talsmasoftware.umldoclet.javadoc
Methods in nl.talsmasoftware.umldoclet.javadoc that return Indentation -
Uses of Indentation in nl.talsmasoftware.umldoclet.rendering.indent
Fields in nl.talsmasoftware.umldoclet.rendering.indent declared as IndentationModifier and TypeFieldDescriptionstatic final IndentationIndentation.DEFAULTThe default indentation is four spaces, initially at level 0.static final IndentationIndentation.NONEA reusable constant for no indentation at all (even after calls toincrease()).Methods in nl.talsmasoftware.umldoclet.rendering.indent that return IndentationModifier and TypeMethodDescriptionIndentation.decrease()protected IndentationIndentingWriter.getIndentation()Indentation.increase()static IndentationIndentation.spaces(int width, int level) Returns an indentation ofwidthspaces, initially indented atwidth * levelspaces.static IndentationIndentation.tabs(int level) Returns an indentation ofleveltabs, increasing or decreasing by one tab at a time.Methods in nl.talsmasoftware.umldoclet.rendering.indent with parameters of type IndentationModifier and TypeMethodDescriptionIndentingWriter.withIndentation(Indentation newIndentation) Returns an indenting writer with the new indentation.static IndentingPrintWriterIndentingPrintWriter.wrap(Appendable delegate, Indentation indentation) Returns an indenting printwriter around the givendelegate.static IndentingWriterIndentingWriter.wrap(Appendable delegate, Indentation indentation) Returns an indenting writer around the givendelegate.
If thedelegatewriter is already an indenting writer, it will simply be returnedwith the specified indentation.
If thedelegatewriter is not yet an indending writer, a new indenting writer class will be created to wrap the delegate using the specifiedindentation.Constructors in nl.talsmasoftware.umldoclet.rendering.indent with parameters of type IndentationModifierConstructorDescriptionprotectedIndentingPrintWriter(Appendable writer, Indentation indentation) protectedIndentingWriter(Appendable delegate, Indentation indentation)