|
NAMERDF::Core::Statement - RDF statement SYNOPSIS require RDF::Core::Statement;
my $subject = new RDF::Core::Resource('http://www.gingerall.cz/employees/Jim');
my $predicate = $subject->new('http://www.gingerall.cz/rdfns#name');
my $object = new RDF::Core::Literal('Jim Brown');
my $statement = new RDF::Core::Statement($subject, $predicate, $object);
print $statement->getObject->getLabel."\n"
DESCRIPTIONInterface
LICENSEThis package is subject to the MPL (or the GPL alternatively). AUTHORGinger Alliance, rdf@gingerall.cz SEE ALSORDF::Core::Resource, RDF::Core::Literal
|