Uses of Class
com.fasterxml.aalto.dom.DOMOutputElement
-
Packages that use DOMOutputElement Package Description com.fasterxml.aalto.dom -
-
Uses of DOMOutputElement in com.fasterxml.aalto.dom
Fields in com.fasterxml.aalto.dom declared as DOMOutputElement Modifier and Type Field Description protected DOMOutputElementDOMWriterImpl. _currElemThis element is the current context element, under which all other nodes are added, until matching end element is output.protected DOMOutputElementDOMWriterImpl. _openElementThis element is non-null right after a call to eitherwriteStartElementandwriteEmptyElement, and can be used to add attributes and namespace declarations.private DOMOutputElementDOMOutputElement. _parentReference to the parent element, element enclosing this element.Methods in com.fasterxml.aalto.dom that return DOMOutputElement Modifier and Type Method Description protected DOMOutputElementDOMOutputElement. createAndAttachChild(org.w3c.dom.Element element)Simplest factory method, which gets called when a 1-argument element output method is called.protected DOMOutputElementDOMOutputElement. createChild(org.w3c.dom.Element element)static DOMOutputElementDOMOutputElement. createRoot()DOMOutputElementDOMOutputElement. getParent()protected DOMOutputElementDOMOutputElement. reuseAsChild(DOMOutputElement parent, org.w3c.dom.Element element)Methods in com.fasterxml.aalto.dom with parameters of type DOMOutputElement Modifier and Type Method Description protected voidDOMOutputElement. addToPool(DOMOutputElement poolHead)Method called to temporarily link this instance to a pool, to allow reusing of instances with the same reader.protected java.lang.StringDOMWriterImpl. findElemPrefix(java.lang.String nsURI, DOMOutputElement elem)Method called to find an existing prefix for the given namespace, if any exists in the scope.protected java.lang.StringDOMWriterImpl. findOrCreateAttrPrefix(java.lang.String suggPrefix, java.lang.String nsURI, DOMOutputElement elem)Method called to somehow find a prefix for given namespace, to be used for a new start element; either use an existing one, or generate a new one.protected java.lang.StringDOMWriterImpl. generateElemPrefix(java.lang.String suggPrefix, java.lang.String nsURI, DOMOutputElement elem)Method called afterDOMWriterImpl.findElemPrefix(java.lang.String, com.fasterxml.aalto.dom.DOMOutputElement)has returned null, to create and bind a namespace mapping for specified namespace.private voidDOMOutputElement. relink(DOMOutputElement parent, org.w3c.dom.Element element)Method called to reuse a pooled instance.protected DOMOutputElementDOMOutputElement. reuseAsChild(DOMOutputElement parent, org.w3c.dom.Element element)private java.lang.StringDOMWriterImpl. validateElemPrefix(java.lang.String prefix, java.lang.String nsURI, DOMOutputElement elem)Constructors in com.fasterxml.aalto.dom with parameters of type DOMOutputElement Constructor Description DOMOutputElement(DOMOutputElement parent, org.w3c.dom.Element element, BijectiveNsMap ns)
-