Help for this page

Select Code to Download


  1. or download this
    package RolePage;
    use Moose::Role;
    ...
    );
    
    requires 'text_attribute_changed';
    
  2. or download this
    package CairoPage;
    
    ...
    sub text_attribute_changed {
        # ... do whatever you need to here ...
    }