Searched defs:nsctx (Results 1 - 1 of 1) sorted by relevance

/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/xml/
H A DXPathAPI.java91 SimpleNamespaceContext nsctx = new SimpleNamespaceContext(nsNode);
92 return selectSingleNode(doc, str, nsctx);
100 * @param nsctx Namespace where the prefix in XPath is resolved from.
105 public static Node selectSingleNode(Node doc, String str, NamespaceContext nsctx) throws XPathException { argument
106 NodeList nl = selectNodeList(doc, str, nsctx);
138 SimpleNamespaceContext nsctx = new SimpleNamespaceContext(nsNode);
139 return selectNodeList(doc, str, nsctx);
148 * @param nsctx Namespace where the prefix in XPath is resolved from.
153 public static NodeList selectNodeList(Node doc, String str, NamespaceContext nsctx) throws XPathException { argument
156 xpath.setNamespaceContext(nsctx);
[all...]

Completed in 28 milliseconds