0byt3m1n1
Path:
/
data
/
0
/
0
/
6
/
46
/
6861
/
user
/
7034
/
cgi-bin
/
mt
/
extlib
/
XML
/
Atom
/
[
Home
]
File: Author.pm
# $Id: Author.pm,v 1.1 2004/05/11 05:15:38 ezra Exp $ package XML::Atom::Author; use strict; use base qw( XML::Atom::Thing ); sub element_name { 'author' } 1; __END__ =head1 NAME XML::Atom::Author - Author or contributor object =head1 SYNOPSIS my $author = XML::Atom::Author->new; $author->email('foo@example.com'); $author->name('Foo Bar'); $entry->author($author); =head1 DESCRIPTION I<XML::Atom::Author> represents an author or contributor element in an Atom feed or entry. =cut