Package io.keikai.doc.io.schema.docx
Class AbstractVisitable
java.lang.Object
io.keikai.doc.io.schema.docx.AbstractVisitable
- All Implemented Interfaces:
ICTElement,IDOCXVisitable<Object>,IXWPFElement
- Direct Known Subclasses:
AbstractBody,AbstractBodyElement,DOCXR,DOCXTr
public abstract class AbstractVisitable
extends Object
implements IDOCXVisitable<Object>, IXWPFElement
Internal Use Only.
An abstract class represents an element that can be visited by a visitor.
- Author:
- Jamson Chan
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddTempData(Object key, Object value) Adds temporary data.getTempData(Object key) Returns temporary data by key.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.keikai.doc.io.schema.docx.ICTElement
getCTMethods inherited from interface io.keikai.doc.io.schema.docx.IDOCXVisitable
acceptMethods inherited from interface io.keikai.doc.io.schema.docx.IXWPFElement
getParent, getXWPF
-
Constructor Details
-
AbstractVisitable
public AbstractVisitable()
-
-
Method Details
-
getTempData
Description copied from interface:IDOCXVisitableReturns temporary data by key.Used to store temporary data during visiting.
- Specified by:
getTempDatain interfaceIDOCXVisitable<Object>- Returns:
- the temporary data by key.
-
addTempData
Description copied from interface:IDOCXVisitableAdds temporary data.Used to store temporary data during visiting.
- Specified by:
addTempDatain interfaceIDOCXVisitable<Object>- Parameters:
key- the key of the data.value- the value of the data.
-