WATANABE Hiroaki > Net-NicoVideo-0.01_23 > Net::NicoVideo::Decorator

Download:
Net-NicoVideo-0.01_23.tar.gz

Dependencies

Annotate this POD

Module Version: 0.01_03   Source   Latest Release: Net-NicoVideo-0.01_25

NAME ^

Net::NicoVideo::Decorator - Interface decorator pattern

SYNOPSIS ^

    package Foo::Bar;
    use base qw(Net::NicoVideo::Decorator);

    sub new {
        my ($class, $component, @extra_args) = @_;
        my $self = $class->SUPER::new($component);
        ...
        $self->initialize(@extra_args);
        ...
        ...
    }
    

    package main;
    Foo::Bar->new(Some::Class->new);

DESCRIPTION ^

This provides common interface for the decorator pattern easily.

SEE ALSO ^

perl

AUTHOR ^

WATANABE Hiroaki <hwat@mac.com>

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

syntax highlighting: