Uses of Interface
org.jrdf.graph.GraphElementFactory

Packages that use GraphElementFactory
org.jrdf.graph This package defines a set of APIs required to implement an RDF Graph and it's associated objects. 
org.jrdf.graph.local.mem This package is an implementation of the JRDF Graph API. 
org.jrdf.parser.bnodefactory An in memory implementation of the parser interfaces. 
org.jrdf.parser.ntriples.parser   
org.jrdf.parser.rdfxml This package is a port of the Sesame RIO RDF/XML Parser. 
org.jrdf.sparql.builder   
 

Uses of GraphElementFactory in org.jrdf.graph
 

Fields in org.jrdf.graph declared as GraphElementFactory
protected  GraphElementFactory AbstractTripleFactory.elementFactory
          The graph element factory.
 

Methods in org.jrdf.graph that return GraphElementFactory
 GraphElementFactory Graph.getElementFactory()
          Returns the node factory for the graph, or creates one.
 

Constructors in org.jrdf.graph with parameters of type GraphElementFactory
AbstractTripleFactory(Graph newGraph, GraphElementFactory newElementFactory)
           
 

Uses of GraphElementFactory in org.jrdf.graph.local.mem
 

Classes in org.jrdf.graph.local.mem that implement GraphElementFactory
 class GraphElementFactoryImpl
          A GraphElementFactory is a class which create the various components of a graph.
 

Methods in org.jrdf.graph.local.mem that return GraphElementFactory
 GraphElementFactory GraphImpl.getElementFactory()
           
 

Uses of GraphElementFactory in org.jrdf.parser.bnodefactory
 

Constructors in org.jrdf.parser.bnodefactory with parameters of type GraphElementFactory
ParserBlankNodeFactoryImpl(MapFactory newCreator, GraphElementFactory newValueFactory)
           
 

Uses of GraphElementFactory in org.jrdf.parser.ntriples.parser
 

Constructors in org.jrdf.parser.ntriples.parser with parameters of type GraphElementFactory
LiteralParserImpl(GraphElementFactory newGraphElementFactory, LiteralMatcher newLiteralMatcher)
           
URIReferenceParserImpl(GraphElementFactory newGraphElementFactory, NTripleUtil newNTripleUtil)
           
 

Uses of GraphElementFactory in org.jrdf.parser.rdfxml
 

Constructors in org.jrdf.parser.rdfxml with parameters of type GraphElementFactory
RdfXmlParser(GraphElementFactory graphElementFactory)
          Creates a new RdfXmlParser that will use the supplied GraphElementFactory to create objects for resources, bNodes and literals.
RdfXmlParser(GraphElementFactory graphElementFactory, MapFactory creator)
          Creates a new RdfXmlParser that will use the supplied BlankNodeFactoryCreator and create a new map to be used by the generic ParserBlankNodeFactoryImpl.
RdfXmlParser(GraphElementFactory valueFactory, ParserBlankNodeFactory parserBlankNodeFactory)
          Creates a new RdfXmlParser that will use the supplied GraphElementFactory to create objects for resources, bNodes and literals.
 

Uses of GraphElementFactory in org.jrdf.sparql.builder
 

Constructors in org.jrdf.sparql.builder with parameters of type GraphElementFactory
LiteralBuilderImpl(GraphElementFactory newFactory)