| com.hp.hpl.jena.n3.N3ParserEventHandler
All known Subclasses: com.hp.hpl.jena.n3.NullN3EventHandler, com.hp.hpl.jena.n3.N3EventPrinter, com.hp.hpl.jena.n3.ChainedN3EventHandler, com.hp.hpl.jena.n3.N3toRDF,
N3ParserEventHandler | public interface N3ParserEventHandler (Code) | | Interface for handling the output events from the N3 parser
author: Andy Seaborne version: $Id: N3ParserEventHandler.java,v 1.9 2008/01/02 12:04:48 andy_seaborne Exp $ |
Method Summary | |
public void | directive(int line, AST directive, AST[] args, String context) | public void | endDocument() | public void | endFormula(int line, String context) | public void | error(Exception ex, String message) | public void | quad(int line, AST subj, AST prop, AST obj, String context) | public void | startDocument() | public void | startFormula(int line, String context) |
directive | public void directive(int line, AST directive, AST[] args, String context)(Code) | | |
endDocument | public void endDocument()(Code) | | |
endFormula | public void endFormula(int line, String context)(Code) | | |
quad | public void quad(int line, AST subj, AST prop, AST obj, String context)(Code) | | |
startDocument | public void startDocument()(Code) | | |
startFormula | public void startFormula(int line, String context)(Code) | | |
|
|