Help for this page

Select Code to Download


  1. or download this
    # Accessor method
    $object->username;
    
    # mutator method
    $object->username('bob');
    
  2. or download this
    # Accessor method
    $object->get_username; 
    
    # mutator method
    $object->set_username('bob');
    
  3. or download this
    No, because we're perl programmers, not Java programmers  :) 
    
    ...
    }
    
    should do the trick fine.