1 5 6 package com.hp.hpl.jena.n3; 7 8 import antlr.collections.AST ; 9 10 14 15 public class NullN3EventHandler implements N3ParserEventHandler 16 { 17 public void startDocument() { } 18 public void endDocument() { } 19 20 public void error(Exception ex, String message) { } 21 public void warning(Exception ex, String message) { } 22 public void deprecated(Exception ex, String message) { } 23 24 public void startFormula(int line, String context) { } 25 public void endFormula(int line, String context) {} 26 27 public void quad(int line, AST subj, AST prop, AST obj, String context) {} 28 public void directive(int line, AST directive, AST[] args, String context) {} 29 30 } 31 32 58 | Popular Tags |