Interface SectionListEntry
public interface SectionListEntry
Definition of a section as entry in a list.
- Since:
- 3.0
-
Method Summary
Modifier and TypeMethodDescriptionGet the section's anchor name.Get the section's name.getText()
Get the text of this section.void
setSectionName
(String sectionName) Set the section's name.void
Set the text for this section.toXml()
Convert to an XML representation.
-
Method Details
-
getSectionName
String getSectionName()Get the section's name.- Returns:
- The name of the section.
- Since:
- 3.0
-
setSectionName
Set the section's name.- Parameters:
sectionName
- The name for the section.- Since:
- 3.0
-
getAnchorName
String getAnchorName()Get the section's anchor name.- Returns:
- The name of the section's anchor.
- Since:
- 3.0
-
getText
String getText()Get the text of this section.- Returns:
- The text.
- Since:
- 3.0
-
setText
Set the text for this section.- Parameters:
text
- The text to set.- Since:
- 3.0
-
toXml
String toXml()Convert to an XML representation.- Returns:
- The XML representation.
- Since:
- 3.0
-