org.jrdf.parser
Interface NamespaceListener


public interface NamespaceListener

An interface defining methods for receiving namespace declarations from an RDF parser.


Method Summary
 void handleNamespace(String prefix, String uri)
          Called by an RDF parser when it has encountered a new namespace declaration.
 

Method Detail

handleNamespace

void handleNamespace(String prefix,
                     String uri)
Called by an RDF parser when it has encountered a new namespace declaration.

Parameters:
prefix - The prefix that is used in the namespace declaration.
uri - The URI of the namespace.