| com.hp.hpl.jena.rdf.arp.NamespaceHandler
All known Subclasses: com.hp.hpl.jena.rdf.arp.JenaHandler,
NamespaceHandler | public interface NamespaceHandler (Code) | | The interface for being notified about namespace use in an RDF/XML
document.
This has methods copied form SAX for
notifying the application of namespaces.
author: Jeremy Carroll |
endPrefixMapping | public void endPrefixMapping(String prefix)(Code) | | A namespace prefix is going out of scope.
There is no guarantee that start and end PrefixMapping
calls nest.
Parameters: prefix - the name of the prefix (ie the X in xmlns:X=U) |
startPrefixMapping | public void startPrefixMapping(String prefix, String uri)(Code) | | A namespace prefix is being defined..
Parameters: prefix - the name of the prefix (ie the X in xmlns:X=U) Parameters: uri - the uri string (ie the U) |
|
|