| java.lang.Object org.openlaszlo.iv.flash.xml.apache.XMLPrefixResolver
XMLPrefixResolver | public class XMLPrefixResolver implements PrefixResolver(Code) | | Prefix resolver, does not actually resolve right now.
|
Method Summary | |
public String | getBaseIdentifier() Return the base identifier. | public String | getNamespaceForPrefix(String prefix) Given a namespace, get the corrisponding prefix. | public String | getNamespaceForPrefix(String prefix, Node namespaceContext) Given a namespace, get the corrisponding prefix.
Warning: This will not work correctly if namespaceContext
is an attribute node.
Parameters: prefix - Prefix to resolve. Parameters: namespaceContext - Node from which to start searching for axmlns attribute that binds a prefix to a namespace. | public boolean | handlesNullPrefixes() |
XMLPrefixResolver | public XMLPrefixResolver()(Code) | | |
getBaseIdentifier | public String getBaseIdentifier()(Code) | | Return the base identifier.
null |
getNamespaceForPrefix | public String getNamespaceForPrefix(String prefix)(Code) | | Given a namespace, get the corrisponding prefix. This assumes that
the PrevixResolver hold's it's own namespace context, or is a namespace
context itself.
Parameters: prefix - Prefix to resolve. Namespace that prefix resolves to, or null if prefixis not bound. |
getNamespaceForPrefix | public String getNamespaceForPrefix(String prefix, Node namespaceContext)(Code) | | Given a namespace, get the corrisponding prefix.
Warning: This will not work correctly if namespaceContext
is an attribute node.
Parameters: prefix - Prefix to resolve. Parameters: namespaceContext - Node from which to start searching for axmlns attribute that binds a prefix to a namespace. Namespace that prefix resolves to, or null if prefixis not bound. |
handlesNullPrefixes | public boolean handlesNullPrefixes()(Code) | | |
|
|