Home | History | Annotate | Download | only in extensions

Lines Matching refs:ns

101    * @param ns       the URI of namespace in which the function is needed
108 public boolean functionAvailable(String ns, String funcName)
113 if (null != ns)
116 (ExtensionHandler) m_extensionFunctionNamespaces.get(ns);
125 * @param ns the URI of namespace in which the function is needed
132 public boolean elementAvailable(String ns, String elemName)
136 if (null != ns)
139 (ExtensionHandler) m_extensionFunctionNamespaces.get(ns);
148 * @param ns the URI of namespace in which the function is needed
161 public Object extFunction(String ns, String funcName,
167 if (null != ns)
170 (ExtensionHandler) m_extensionFunctionNamespaces.get(ns);
189 throw new XPathProcessorException(XSLMessages.createMessage(XSLTErrorResources.ER_EXTENSION_FUNC_UNKNOWN, new Object[]{ns, funcName }));
190 //"Extension function '" + ns + ":" + funcName + "' is unknown");
213 String ns = extFunction.getNamespace();
214 if (null != ns)
217 (ExtensionHandler) m_extensionFunctionNamespaces.get(ns);
236 new Object[]{ns, extFunction.getFunctionName()}));