All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface org.w3c.rdf.RDFConsumer

public interface RDFConsumer

Method Index

 o assert(DataSource, Resource, Resource, RDFnode)
assert is called every time a new statement within RDF data model is added
 o end(DataSource)
end is called when parsing of data is ended
 o start(DataSource)
start is called when parsing of data is started

Methods

 o start
 public abstract void start(DataSource ds)
start is called when parsing of data is started

Parameters:
ds - DataSource starting its job
 o end
 public abstract void end(DataSource ds)
end is called when parsing of data is ended

Parameters:
ds - DataSource finishing its job
 o assert
 public abstract void assert(DataSource ds,
                             Resource predicate,
                             Resource subject,
                             RDFnode object)
assert is called every time a new statement within RDF data model is added

Parameters:
ds - DataSource who assert'ed this statement (can be null if the assert'ing party does no implement DataSource interface)

All Packages  Class Hierarchy  This Package  Previous  Next  Index