NAME

XML::Atom::Collection - Collection object

SYNOPSIS

my $categories = XML::Atom::Categories->new;
$categories->href('http://example.com/cats/forMain.cats');
$categories->add_category($category);

my $collection = XML::Atom::Collection->new;
$collection->href('http://example.org/reilly/main');
$collection->title('My Blog Entries');
$collection->categories($categories);

## Get a list of the categories elements.
my @categories = $collection->categories;

USAGE

XML::Atom::Collection->new

$collection->href

$collection->title

$collection->accept

$collection->categories

SEE ALSO

XML::Atom

XML::Atom::Service

AUTHOR

Takeru INOUE, <takeru.inoue@gmail.com>

COPYRIGHT AND LICENSE

Copyright (C) 2007 by Takeru INOUE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.