Class GraphListenerBase
- java.lang.Object
-
- org.apache.jena.sparql.util.graph.GraphListenerBase
-
- All Implemented Interfaces:
GraphListener
- Direct Known Subclasses:
GraphListenerCounter
public abstract class GraphListenerBase extends java.lang.Object implements GraphListener
Convert the full, wide GraphListener interface into something more specific to loading including flagging the start and finish of a load operation.
-
-
Constructor Summary
Constructors Constructor Description GraphListenerBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidnotifyAddArray(Graph g, Triple[] triples)voidnotifyAddGraph(Graph g, Graph added)voidnotifyAddIterator(Graph g, java.util.Iterator<Triple> it)voidnotifyAddList(Graph g, java.util.List<Triple> triples)voidnotifyAddTriple(Graph g, Triple t)voidnotifyDeleteArray(Graph g, Triple[] triples)voidnotifyDeleteGraph(Graph g, Graph removed)voidnotifyDeleteIterator(Graph g, java.util.Iterator<Triple> it)voidnotifyDeleteList(Graph g, java.util.List<Triple> triples)voidnotifyDeleteTriple(Graph g, Triple t)voidnotifyEvent(Graph source, java.lang.Object value)
-
-
-
Method Detail
-
notifyAddTriple
public void notifyAddTriple(Graph g, Triple t)
- Specified by:
notifyAddTriplein interfaceGraphListener
-
notifyAddArray
public void notifyAddArray(Graph g, Triple[] triples)
- Specified by:
notifyAddArrayin interfaceGraphListener
-
notifyAddList
public void notifyAddList(Graph g, java.util.List<Triple> triples)
- Specified by:
notifyAddListin interfaceGraphListener
-
notifyAddIterator
public void notifyAddIterator(Graph g, java.util.Iterator<Triple> it)
- Specified by:
notifyAddIteratorin interfaceGraphListener
-
notifyAddGraph
public void notifyAddGraph(Graph g, Graph added)
- Specified by:
notifyAddGraphin interfaceGraphListener
-
notifyDeleteTriple
public void notifyDeleteTriple(Graph g, Triple t)
- Specified by:
notifyDeleteTriplein interfaceGraphListener
-
notifyDeleteList
public void notifyDeleteList(Graph g, java.util.List<Triple> triples)
- Specified by:
notifyDeleteListin interfaceGraphListener
-
notifyDeleteArray
public void notifyDeleteArray(Graph g, Triple[] triples)
- Specified by:
notifyDeleteArrayin interfaceGraphListener
-
notifyDeleteIterator
public void notifyDeleteIterator(Graph g, java.util.Iterator<Triple> it)
- Specified by:
notifyDeleteIteratorin interfaceGraphListener
-
notifyDeleteGraph
public void notifyDeleteGraph(Graph g, Graph removed)
- Specified by:
notifyDeleteGraphin interfaceGraphListener
-
notifyEvent
public void notifyEvent(Graph source, java.lang.Object value)
- Specified by:
notifyEventin interfaceGraphListener
-
-