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 TypeMethodDescriptionboolean
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 Details
-
isNodeOfType
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
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
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.
-