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

NAME

LS::RDF::SimpleDocument - Simple RDF Document object

SYNOPSIS

 my $rdfDoc = LS::RDF::SimpleDocument->new();

 $rdfDoc->addTripleLiteral($lsid->as_string(), 
                           'http://purl.org/dc/elements/1.1/#title', 
                           $approved_gene_name);

 $rdfDoc->addTripleResource($lsid->as_string(), 
                            'urn:lsid:myauthority.org:predicates:external_link', 
                            'urn:lsid:ncbi.nlm.nih.gov.lsid.i3c.org:pubmed:' . lc($pmid1ID));

 print '<?xml version="1.0"?>' . "\n" . $rdfDoc->output();

DESCRIPTION

This class provides a simple interface to create RDF documents.

METHODS

addTripleResource ( $subject, $predicate, $object )

Adds an RDF triple which contains a resource as its object.

addTripleLiteral ( $subject, $predicate, $object )

Adds an RDF triple which contains a literal as its object.

output ( )

Returns the RDF represented by this object as text.

COPYRIGHT

Copyright (c) 2002,2003 IBM Corporation. All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www.opensource.org/licenses/cpl.php