Class SectionBlock
- java.lang.Object
-
- org.apache.maven.doxia.module.twiki.parser.SectionBlock
-
-
Constructor Summary
Constructors Constructor Description SectionBlock(String title, int level, Block[] blocks)
Creates the SectionBlock.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Block[]
getBlocks()
Returns the childBlocks.int
getLevel()
Returns the level.String
getTitle()
Returns the title.int
hashCode()
String
toString()
void
traverse(Sink sink)
Traverse the block
-
-
-
Method Detail
-
getLevel
public final int getLevel()
Returns the level.- Returns:
int
with the level.
-
getTitle
public final String getTitle()
Returns the title.- Returns:
String
with the title.
-
toString
public final String toString()
-
traverse
public final void traverse(Sink sink)
Traverse the block
-
getBlocks
public final Block[] getBlocks()
Returns the childBlocks.- Returns:
Block[]
with the childBlocks.
-
-