<<

NAME

Youri::Check::Maintainer::Resolver - Abstract maintainer resolver

DESCRIPTION

This abstract class defines Youri::Check::Maintainer::Resolver interface.

SYNOPSIS

    use Youri::Check::Maintainer::Resolver::Foo;

    my $resolver = Youri::Check::Maintainer::Resolver::Foo->new();

    print $resolver->get_maintainer('foo');

CLASS METHODS

new(%args)

Creates and returns a new Youri::Check::Maintainer::Resolver object.

No generic parameters (subclasses may define additional ones).

Warning: do not call directly, call subclass constructor instead.

get_maintainer($package)

Returns maintainer for given package, which can be either a full Youri::Package object or just a package name.

SUBCLASSING

The following methods have to be implemented:

get_maintainer

COPYRIGHT AND LICENSE

Copyright (C) 2002-2006, YOURI project

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

<<