Interface TableHelper
- All Known Subinterfaces:
TablePropertiesHelper
- All Known Implementing Classes:
ChoiceTableHelper,DITACALSTableHelper,Docbook5CALSTableHelper,Docbook5HTMLTableHelper,DocbookCALSTableHelper,DocbookHTMLTableHelper,RelTablePropertiesHelper,SimpleTableHelper,TablePropertiesHelperBase
@API(type=INTERNAL,
src=PUBLIC)
public interface TableHelper
-
Method Summary
Modifier and TypeMethodDescriptionbooleanisNodeOfType(AuthorElement node, int type) Test if anAuthorNodeis an element and it has one of the following types:AuthorTableHelper.TYPE_CELL,AuthorTableHelper.TYPE_ROWorAuthorTableHelper.TYPE_TABLE.booleanisTable(AuthorElement node) Checks if the given node represents the table element.booleanisTableGroup(AuthorElement node) Checks if the given node represents a table group element.
-
Method Details
-
isNodeOfType
Test if anAuthorNodeis an element and it has one of the following types:AuthorTableHelper.TYPE_CELL,AuthorTableHelper.TYPE_ROWorAuthorTableHelper.TYPE_TABLE.- Parameters:
node- The node to be checked.type- The type to search for.- Returns:
trueif thenodeis an element with the specified type.
-
isTable
Checks if the given node represents the table element.- Parameters:
node- The node to be checked.- Returns:
trueif the given node is the table element.
-
isTableGroup
Checks if the given node represents a table group element.- Parameters:
node- The node to be checked.- Returns:
trueif the given node is the table group element.
-