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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isNodeOfType(AuthorElement node, int type)
Test if anAuthorNode
is an element and it has one of the following types:AuthorTableHelper.TYPE_CELL
,AuthorTableHelper.TYPE_ROW
orAuthorTableHelper.TYPE_TABLE
.boolean
isTable(AuthorElement node)
Checks if the given node represents the table element.boolean
isTableGroup(AuthorElement node)
Checks if the given node represents a table group element.
-
-
-
Method Detail
-
isNodeOfType
boolean isNodeOfType(AuthorElement node, int type)
Test if anAuthorNode
is an element and it has one of the following types:AuthorTableHelper.TYPE_CELL
,AuthorTableHelper.TYPE_ROW
orAuthorTableHelper.TYPE_TABLE
.- Parameters:
node
- The node to be checked.type
- The type to search for.- Returns:
true
if thenode
is an element with the specified type.
-
isTable
boolean isTable(AuthorElement node)
Checks if the given node represents the table element.- Parameters:
node
- The node to be checked.- Returns:
true
if the given node is the table element.
-
isTableGroup
boolean isTableGroup(AuthorElement node)
Checks if the given node represents a table group element.- Parameters:
node
- The node to be checked.- Returns:
true
if the given node is the table group element.
-
-