Uses of Class
freemarker.ext.dom.NodeModel
-
Packages that use NodeModel Package Description freemarker.ext.dom Exposes DOM XML nodes to templates as easily traversable trees; see in the Manual. -
-
Uses of NodeModel in freemarker.ext.dom
Methods in freemarker.ext.dom that return NodeModel Modifier and Type Method Description static NodeModel
NodeModel. parse(java.io.File f)
Same asparse(source, true, true)
, but loads from aFile
; don't miss the security warnings documented there.static NodeModel
NodeModel. parse(java.io.File f, boolean removeComments, boolean removePIs)
Same asparse(InputSource, boolean, boolean)
, but loads from aFile
; don't miss the security warnings documented there.static NodeModel
NodeModel. parse(org.xml.sax.InputSource is)
Same asparse(is, true, true)
; don't miss the security warnings documented there.static NodeModel
NodeModel. parse(org.xml.sax.InputSource is, boolean removeComments, boolean removePIs)
Convenience method to create aNodeModel
from a SAXInputSource
; please see the security warning further down.static NodeModel
NodeModel. wrap(org.w3c.dom.Node node)
-