XML::APML::Author - author markup


XML-APML documentation  | view source Contained in the XML-APML distribution.

Index


NAME

Top

XML::APML::Author - author markup

SYNOPSIS

Top

    my $explicit_author = XML::APML::Author->new();
    $explicit_author->key();
    $explicit_author->value();

    my $implicit_author = XML::APML::Author->new(
        key     => 'Sample',
        value   => 0.5,
        from    => 'GatheringTool.com',
        updated => '2007-03-11T01:55:00Z',
    );

    print $implicit_author->key;
    print $implicit_author->value;
    print $implicit_author->from;
    print $implicit_author->updated;

    $source->add_author($explicit_author);

DESCRIPTION

Top

Class that represents Author mark-up for APML.

METHODS

Top

new

key

value

from

updated


XML-APML documentation  | view source Contained in the XML-APML distribution.