NAME

XML::Ant::BuildFile::Task::Java - Java task node in an Ant build file

VERSION

version 0.207

SYNOPSIS

use XML::Ant::BuildFile::Project;
my $project = XML::Ant::BuildFile::Project->new( file => 'build.xml' );
my @foo_java = $project->target('foo')->tasks('java');
for my $java (@foo_java) {
    print $java->classname || "$java->jar";
    print "\n";
}

DESCRIPTION

This is an incomplete class for Ant Java tasks in a build file project.

ATTRIBUTES

classname

A string representing the Java class that's executed.

jar

A Path::Class::File for the jar file being executed.

METHODS

args

Returns a list of all arguments passed to the Java class.

BUGS

Please report any bugs or feature requests on the bugtracker website http://github.com/mjgardner/XML-Ant-BuildFile/issues

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

AUTHOR

Mark Gardner <mjgardner@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by GSI Commerce.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.