Help for this page

Select Code to Download


  1. or download this
    package Model;   # mix in to model classes that are
                     # implemented as blessed hashes
    ...
        my ($self, $model, @aspectData) = @_;
    }
    
  2. or download this
    package MyModel;
    @MyModel::ISA = qw(SomethingElse Model);
    ...
    # calls $view->update($model, 'something', 123);
    $model->changeSomething(123);