Package org.apache.wiki.parser
Class Heading
- java.lang.Object
 - 
- org.apache.wiki.parser.Heading
 
 
- 
public class Heading extends java.lang.Object
This class is used to store the headings in a manner which allow the building of a Table Of Contents.- Since:
 - 2.4
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static intHEADING_LARGEDefines a large heading.static intHEADING_MEDIUMDefines a medium-size heading.static intHEADING_SMALLDefines a small heading.intm_levelDenotes the level of the heading.java.lang.Stringm_titleAnchorContains the anchor to the headingjava.lang.Stringm_titleSectionContains a section link.java.lang.Stringm_titleTextContains the text of the heading. 
- 
Constructor Summary
Constructors Constructor Description Heading() 
 - 
 
- 
- 
Field Detail
- 
HEADING_SMALL
public static final int HEADING_SMALL
Defines a small heading.- See Also:
 - Constant Field Values
 
 
- 
HEADING_MEDIUM
public static final int HEADING_MEDIUM
Defines a medium-size heading.- See Also:
 - Constant Field Values
 
 
- 
HEADING_LARGE
public static final int HEADING_LARGE
Defines a large heading.- See Also:
 - Constant Field Values
 
 
- 
m_level
public int m_level
Denotes the level of the heading. Either HEADING_SMALL, HEADING_MEDIUM, or HEADING_LARGE. 
- 
m_titleText
public java.lang.String m_titleText
Contains the text of the heading. 
- 
m_titleAnchor
public java.lang.String m_titleAnchor
Contains the anchor to the heading 
- 
m_titleSection
public java.lang.String m_titleSection
Contains a section link. 
 - 
 
- 
Constructor Detail
- 
Heading
public Heading()
 
 - 
 
 -