The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

UR::Object::Viewer::Aspect - a base class for a viewer which renders a particular aspect of its subject

SYNOPSIS

    $v = $obj->create_viewer(
        visible_aspects => [qw/some_property some_method/], 
    );
    $v->show_modal();
  
    $v->set_subject($another_obj_same_class);
    $v->show();
    App::UI->event_loop();