Help for this page

Select Code to Download


  1. or download this
    package Widget::Role;            # Formerly Widget::Abstract
    use Moose::Role;
    requires qw( get_widget_type );  # Abstract methods
    ...                              # Other attributes and methods.
    1;
    
  2. or download this
    package Widget::Snazzy;
    use Moose;
    ...
    sub get_widget_type { __PACKAGE__ }
    ...
    1;