The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

RDFStore::NodeFactory - implementation of the NodeFactory RDF API

SYNOPSIS

        use RDFStore::NodeFactory;
        my $factory = new RDFStore::NodeFactory();
        my $statement = $factory->createStatement(
                                $factory->createResource("http://pen.jrc.it"),
                                $factory->createResource("http://purl.org/schema/1.0#author"),
                                $factory->createLiteral("Alberto Reggiori")
                                );

DESCRIPTION

An RDFStore::Stanford::NodeFactory implementation using RDFStore::RDFNode, RDFStore::Resource and RDFStore::Literal

SEE ALSO

RDFStore::RDFNode(3) RDFStore::Resource(3) RDFStore::Literal(3)

AUTHOR

        Alberto Reggiori <areggiori@webweaving.org>