de.fuberlin.wiwiss.ng4j.trig
Interface TriGParserEventHandler

All Known Implementing Classes:
NamedGraphSetPopulator

public interface TriGParserEventHandler

Interface for handling the output events from the TriG parser. Based on Jena's N3ParserEventHandler.

Version:
$Id: TriGParserEventHandler.java,v 1.2 2004/11/25 23:49:03 cyganiak Exp $
Author:
Andy Seaborne, Richard Cyganiak (richard@cyganiak.de)

Method Summary
 void directive(int line, antlr.collections.AST directive, antlr.collections.AST[] args)
           
 void endDocument()
           
 void endGraph(int line, antlr.collections.AST graphName)
           
 void error(Exception ex, String message)
           
 void quad(int line, antlr.collections.AST subj, antlr.collections.AST prop, antlr.collections.AST obj, antlr.collections.AST graphName)
           
 void startDocument()
           
 void startGraph(int line, antlr.collections.AST graphName)
           
 

Method Detail

startDocument

void startDocument()

endDocument

void endDocument()

error

void error(Exception ex,
           String message)

startGraph

void startGraph(int line,
                antlr.collections.AST graphName)

endGraph

void endGraph(int line,
              antlr.collections.AST graphName)

quad

void quad(int line,
          antlr.collections.AST subj,
          antlr.collections.AST prop,
          antlr.collections.AST obj,
          antlr.collections.AST graphName)

directive

void directive(int line,
               antlr.collections.AST directive,
               antlr.collections.AST[] args)