com.hp.hpl.jena.rdf.arp
Interface ARPEventHandler

All Superinterfaces:
ExtendedHandler, NamespaceHandler, StatementHandler

public interface ARPEventHandler
extends StatementHandler, ExtendedHandler, NamespaceHandler

Convenience generalization of all ARP handler interfaces. Sample usage:

    ARPHandler h = new ARPHandler() {
     // definitions
    };
    ARP arp = new ARP();
    arp.setStatementHandler(h);
    arp.setExtendedHandler(h);
    arp.setNamespaceHandler(h);
 

Author:
Jeremy Carroll

Method Summary
 
Methods inherited from interface com.hp.hpl.jena.rdf.arp.StatementHandler
statement, statement
 
Methods inherited from interface com.hp.hpl.jena.rdf.arp.ExtendedHandler
discardNodesWithNodeID, endBNodeScope, endRDF, startRDF
 
Methods inherited from interface com.hp.hpl.jena.rdf.arp.NamespaceHandler
endPrefixMapping, startPrefixMapping
 



Licenced under the Apache License, Version 2.0