1 6 7 package com.hp.hpl.jena.graph; 8 9 import java.util.*; 10 11 19 20 public interface GraphListener 21 { 22 25 void notifyAddTriple( Graph g, Triple t ); 26 27 30 void notifyAddArray( Graph g, Triple [] triples ); 31 32 35 void notifyAddList( Graph g, List triples ); 36 37 40 void notifyAddIterator( Graph g, Iterator it ); 41 42 47 void notifyAddGraph( Graph g, Graph added ); 48 49 52 void notifyDeleteTriple( Graph g, Triple t ); 53 54 57 void notifyDeleteList( Graph g, List L ); 58 59 62 void notifyDeleteArray( Graph g, Triple [] triples ); 63 64 67 void notifyDeleteIterator( Graph g, Iterator it ); 68 69 74 void notifyDeleteGraph( Graph g, Graph removed ); 75 76 80 void notifyEvent( Graph source, Object value ); 81 } 82 83 112 | Popular Tags |