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 NodeModelNodeModel. parse(java.io.File f)Same asparse(source, true, true), but loads from aFile; don't miss the security warnings documented there.static NodeModelNodeModel. 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 NodeModelNodeModel. parse(org.xml.sax.InputSource is)Same asparse(is, true, true); don't miss the security warnings documented there.static NodeModelNodeModel. parse(org.xml.sax.InputSource is, boolean removeComments, boolean removePIs)Convenience method to create aNodeModelfrom a SAXInputSource; please see the security warning further down.static NodeModelNodeModel. wrap(org.w3c.dom.Node node)
-