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

NAME

LS::RDF::ComplexDocument - An object that allows more complex RDF documents to be created

SYNOPSIS

 my $rdfDoc = LS::RDF::ComplexDocument->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"?>' . $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.

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