XML::APML::Application - Application markup


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

Index


NAME

Top

XML::APML::Application - Application markup

SYNOPSIS

Top

    my $app = XML::APML::Application->new;
    $app->name('My Application');

    $apml->add_application($app);

    foreach my $application ($apml->applications) {
      print $application->name;
    }

DESCRIPTION

Top

Class that represents Application mark-up for APML.

METHODS

Top

new

Constructor

  my $app = XML::APML::Application->new;

  my $app = XML::APML::Application->new( name => 'My Application' );

name

elem


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