Commandable::Finder::MethodAttributes(3pm) | User Contributed Perl Documentation | Commandable::Finder::MethodAttributes(3pm) |
"Commandable::Finder::MethodAttributes" - find commands stored as methods with attributes
use Commandable::Finder::MethodAttributes; my $object = SomeClass->new( ... ); my $finder = Commandable::Finder::MethodAttributes->new( object => $object, ); my $help_command = $finder->find_command( "help" ); foreach my $command ( $finder->find_commands ) { ... }
This subclass of Commandable::Finder::SubAttributes looks for methods that define commands, where each command is provided by an individual method in a given class. It stores the object instance and arranges that each discovered command method will capture it, passing it as the first argument when invoked.
The attributes on each method are those given by "Commandable::Finder::SubAttributes" and are used in the same way here.
$finder = Commandable::Finder::MethodAttributes->new( %args )
Constructs a new instance of "Commandable::Finder::MethodAttributes".
Takes the following named arguments:
Any additional arguments are passed to the superclass constructor.
Paul Evans <leonerd@leonerd.org.uk>
2023-01-08 | perl v5.36.0 |