Uses of Class
com.fasterxml.aalto.out.OutputElement
-
Packages that use OutputElement Package Description com.fasterxml.aalto.out -
-
Uses of OutputElement in com.fasterxml.aalto.out
Fields in com.fasterxml.aalto.out declared as OutputElement Modifier and Type Field Description protected OutputElement
StreamWriterBase. _currElem
We'll use a virtual root element (like a document node of sort), to simplify other processing, basically such that there is always a current output element instance, even when in prolog or epilog.protected OutputElement
StreamWriterBase. _outputElemPool
(package private) OutputElement
OutputElement. _parent
Reference to either the parent (enclosing element) of this element, when part of active output context; or link to next reusable unused element after this one (if not part of active context).Methods in com.fasterxml.aalto.out that return OutputElement Modifier and Type Method Description protected OutputElement
OutputElement. createChild(WName name)
Simplest factory method, which gets called when non-namespace element output method is called.protected OutputElement
OutputElement. createChild(WName name, java.lang.String uri)
Full factory method, used for 'normal' namespace qualified output methods.protected static OutputElement
OutputElement. createRoot()
OutputElement
OutputElement. getParent()
protected OutputElement
OutputElement. reuseAsChild(OutputElement parent, WName name)
protected OutputElement
OutputElement. reuseAsChild(OutputElement parent, WName name, java.lang.String nsURI)
Methods in com.fasterxml.aalto.out with parameters of type OutputElement Modifier and Type Method Description protected void
OutputElement. addToPool(OutputElement poolHead)
Method called to temporarily link this instance to a pool, to allow reusing of instances with the same reader.void
OutputElement. relink(OutputElement parent)
Method called to reuse a recycled instance, as is, with same name.private void
OutputElement. relink(OutputElement parent, WName name, java.lang.String uri)
Method called to reuse a pooled instance, but with different nameprotected OutputElement
OutputElement. reuseAsChild(OutputElement parent, WName name)
protected OutputElement
OutputElement. reuseAsChild(OutputElement parent, WName name, java.lang.String nsURI)
Constructors in com.fasterxml.aalto.out with parameters of type OutputElement Constructor Description OutputElement(OutputElement parent, WName name, java.lang.String uri, NsBinder binder)
-