Class TableFinder

java.lang.Object
org.docx4j.TraversalUtil.CallbackImpl
org.docx4j.finders.TableFinder
All Implemented Interfaces:
TraversalUtil.Callback

public class TableFinder
extends TraversalUtil.CallbackImpl
  • Field Summary

    Fields
    Modifier and Type Field Description
    java.util.List<Tbl> tblList  
  • Constructor Summary

    Constructors
    Constructor Description
    TableFinder()  
  • Method Summary

    Modifier and Type Method Description
    java.util.List<java.lang.Object> apply​(java.lang.Object o)
    Visits a node in pre order (before its children have been visited).
    void setTraverseTables​(boolean traveseTables)
    Defaults to false; set this to true unless you don't want to traverse a table (eg a nested table).
    boolean shouldTraverse​(java.lang.Object o)
    Decide whether this node's children should be traversed.

    Methods inherited from class org.docx4j.TraversalUtil.CallbackImpl

    getChildren, walkJAXBElements

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • tblList

      public java.util.List<Tbl> tblList
  • Constructor Details

    • TableFinder

      public TableFinder()
  • Method Details