Given a namespace uri, and the namespaces mappings for the current element, return the current prefix for that uri.
@param uri the namespace URI to be search for
@return an existing prefix that maps to the given URI, null if no prefixmaps to the given namespace URI.
DOM Level 3 - Experimental: Look up the prefix associated to the given namespace URI, starting from this node.
@param namespaceURI
@return the prefix for the namespace
Given a namespace uri, and the namespaces mappings for the current element, return the current prefix for that uri.
@param uri the namespace URI to be search for
@return an existing prefix that maps to the given URI, null if no prefixmaps to the given namespace URI.
Look up the prefix associated to the given namespace URI, starting from this node. The default namespace declarations are ignored by this method. See for details on the algorithm used by this method.
@param namespaceURI The namespace URI to look for.
@return Returns an associated namespace prefix if found or null if none is found. If more than one prefix are associated to the namespace prefix, the returned namespace prefix is implementation dependent.
@since DOM Level 3
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.