1 6 7 package com.hp.hpl.jena.rdf.listeners; 8 9 import java.util.*; 10 11 import com.hp.hpl.jena.rdf.model.*; 12 13 19 public class NullListener implements ModelChangedListener 20 { 21 public void addedStatement( Statement s ) {} 22 public void addedStatements( Statement [] statements ) {} 23 public void addedStatements( List statements ) {} 24 public void addedStatements( StmtIterator statements ) {} 25 public void addedStatements( Model m ) {} 26 public void removedStatement( Statement s ) {} 27 public void removedStatements( Statement [] statements ) {} 28 public void removedStatements( List statements ) {} 29 public void removedStatements( StmtIterator statements ) {} 30 public void removedStatements( Model m ) {} 31 public void notifyEvent( Model m, Object event ) {} 32 } 33 34 35 | Popular Tags |