
Class::Param::Decorator - Class Param Decorator Class

package MyDecorator;
use base 'Class::Param::Decorator';
sub get {
# do something
}


Constructor. Takes one argument, an instance of Class::Param::Base.
Called after construction with same arguments given to constructor, should return the instance.
Returns the decorated Class::Param::Base instance.
This method simply performs $self-decorated->get> and returns the result.
This method simply performs $self-decorated->set> and returns the result.
This method simply performs $self-decorated->has> and returns the result.
This method simply performs $self-decorated->count> and returns the result.
This method simply performs $self-decorated->clear> and returns the result.
This method simply performs $self-decorated->names> and returns the result.
This method simply performs $self-decorated->remove> and returns the result.


Christian Hansen chansen@cpan.org

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