XML::Atom::Syndication::Entry - class representing an Atom entry


XML-Atom-Syndication documentation Contained in the XML-Atom-Syndication distribution.

Index


Code Index:


XML-Atom-Syndication documentation Contained in the XML-Atom-Syndication distribution.

package XML::Atom::Syndication::Entry;
use strict;

use base qw( XML::Atom::Syndication::Thing );

XML::Atom::Syndication::Entry->mk_accessors('XML::Atom::Syndication::Source',
                                            'source');
XML::Atom::Syndication::Entry->mk_accessors('XML::Atom::Syndication::Content',
                                            'content');
XML::Atom::Syndication::Entry->mk_accessors('XML::Atom::Syndication::Text',
                                            'summary');
XML::Atom::Syndication::Entry->mk_accessors('element', 'published');

# deprecated 0.3 accessors
XML::Atom::Syndication::Entry->mk_accessors('element', 'issued', 'modified',
                                            'created');

sub element_name { 'entry' }

1;

__END__