Help for this page

Select Code to Download


  1. or download this
        my $someframework = SomeFramework->new(parameter => 'value');
    
  2. or download this
        has 'logger' => (
            is          => 'ro',
    ...
            SomeFramework::Logger->new(someframework => $self);
    
        }
    
  3. or download this
        has 'someframework' => (
            is          => 'ro',
    ...
            writer      => '_set_someframework',
            required    => 1
        );
    
  4. or download this
        my $configuration =
             $self->
             get_someframework->
             get_configuration->
             get_blah_blah;
    
  5. or download this
        my $configuration =
            $self->
    ...
            get_somecomponent->
            get_configuration->
            get_blah_blah;
    
  6. or download this
        my $configuration = $self->sc->ss->sf->conf->blah_blah;
    
  7. or download this
        has 'some_framework' => (
            is          => 'ro',
    ...
            writer      => '_set_someframework',
            required    => 1
        );
    
  8. or download this
        has 'some_framework' => (
            is          => 'ro',
    ...
            required    => 1,
            alias       => 'sf'
        );
    
  9. or download this
        has 'api' => (
            is          => 'ro',
    ...
            required    => 1,
            alias       => 'api'
        );
    
  10. or download this
        has 'api' => (
            is          => 'ro',
    ...
                #     returns the reference to its own object
            }
        );