Interface IDOCXVisitable<T>

All Known Implementing Classes:
AbstractBody, AbstractBodyElement, AbstractHdrFtr, AbstractVisitable, DOCXDocument, DOCXFtr, DOCXHdr, DOCXP, DOCXR, DOCXTbl, DOCXTc, DOCXTr

public interface IDOCXVisitable<T>
Internal Use Only.

Represents an DOCX element that can be visited by a visitor.

Author:
Jamson Chan
  • Method Details

    • getTempData

      Object getTempData(Object key)
      Returns temporary data by key.

      Used to store temporary data during visiting.

      Returns:
      the temporary data by key.
    • addTempData

      void addTempData(Object key, Object value)
      Adds temporary data.

      Used to store temporary data during visiting.

      Parameters:
      key - the key of the data.
      value - the value of the data.
    • accept

      T accept(IDOCXVisitor<T> visitor)
      Accepts a visitor.