Class AbstractVisitable

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void addTempData​(java.lang.Object key, java.lang.Object value)
      Adds temporary data.
      java.lang.Object getTempData​(java.lang.Object key)
      Returns temporary data by key.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface io.keikai.doc.io.schema.docx.ICTElement

        getCT
    • Constructor Detail

      • AbstractVisitable

        public AbstractVisitable()
    • Method Detail

      • getTempData

        public java.lang.Object getTempData​(java.lang.Object key)
        Description copied from interface: IDOCXVisitable
        Returns temporary data by key.

        Used to store temporary data during visiting.

        Specified by:
        getTempData in interface IDOCXVisitable<java.lang.Object>
        Returns:
        the temporary data by key.
      • addTempData

        public void addTempData​(java.lang.Object key,
                                java.lang.Object value)
        Description copied from interface: IDOCXVisitable
        Adds temporary data.

        Used to store temporary data during visiting.

        Specified by:
        addTempData in interface IDOCXVisitable<java.lang.Object>
        Parameters:
        key - the key of the data.
        value - the value of the data.