NAME

RDF::Helper::Object - Perl extension for blah blah blah

SYNOPSIS

use RDF::Helper;
my $rdf = RDF::Helper->new(
    BaseInterface => 'RDF::Redland',
    Namespaces => { 
      dc => 'http://purl.org/dc/elements/1.1/',
      rdf => "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
      '#default' => "http://purl.org/rss/1.0/"
   }
);
my $obj = $rdf->get_object('http://use.perl.org/');
$obj->rdf_type("http://purl.org/rss/1.0/channel");
$obj->title("RSS Channel");
$obj->description("The description of this RSS feed");

DESCRIPTION