Class ChildBlocksBuilder
- java.lang.Object
-
- org.apache.maven.doxia.module.confluence.parser.ChildBlocksBuilder
-
public class ChildBlocksBuilder extends Object
Re-usable builder that can be used to generate paragraph and list item text from a string containing all the content and wiki formatting. This class is intentionally stateful, but cheap to create, so create one as needed and keep it on the stack to preserve stateless behaviour in the caller.- Since:
- 1.1
- Author:
- Dave Syer
-
-
Constructor Summary
Constructors Constructor Description ChildBlocksBuilder(String input)
Constructor for ChildBlocksBuilder.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Block>
getBlocks()
Utility method to convert marked up content into blocks for rendering.
-
-
-
Constructor Detail
-
ChildBlocksBuilder
public ChildBlocksBuilder(String input)
Constructor for ChildBlocksBuilder.
- Parameters:
input
- the input.
-
-