|
NAMERDFStore::RDFNode - An RDF graph node SYNOPSIS package myNode;
use RDFStore::RDFNode;
@myNode::ISA = qw ( RDFStore::RDFNode );
sub new {
my $self = $_[0]->SUPER::new();
$self->{mylabel} = $_[1];
bless $self,$_[0];
};
sub getLabel {
return $_[0]->{mylabel};
};
package main;
my $node = new myNode('My generic node');
my $node1 = new myNode('Your generic node');
print $node->toString." is ";
print "not "
unless $node->equals($node1);
print " equal to ".$node1->toString."\n";
DESCRIPTIONRDFStore::RDFNode is the base abstract class for RDFStore::Literal and RDFStore::Resource. METHODS
SEE ALSORDFStore::Literal(3) RDFStore::Resource(3) RDFStore(3) RDFStore::Digest::Digestable(3) ABOUT RDFhttp://www.w3.org/TR/rdf-primer/ http://www.w3.org/TR/rdf-mt http://www.w3.org/TR/rdf-syntax-grammar/ http://www.w3.org/TR/rdf-schema/ http://www.w3.org/TR/1999/REC-rdf-syntax-19990222 (obsolete) AUTHORAlberto Reggiori <areggiori@webweaving.org> POD ERRORSHey! The above document had some coding errors, which are explained below:
|