| Paketname | libclass-data-accessor-perl | 
| Beschreibung | Inheritable, overridable class and instance data accessor creation | 
| Archiv/Repository | Offizielles Debian Archiv squeeze (main) | 
| Version | 0.04004-1 | 
| Sektion | perl | 
| Priorität | optional | 
| Installierte Größe | 68 Byte | 
| Hängt ab von | perl (>= 5.6.0-16) | 
| Empfohlene Pakete |  | 
| Paketbetreuer | Debian Perl Group | 
| Quelle |  | 
| Paketgröße | 10452 Byte | 
| Prüfsumme MD5 | b97de81d5eae0bd6f3f514a6bf2cfb1d | 
| Prüfsumme SHA1 | 09bcdba4ea7cffa0e22ddbbffafe21b956bfe363 | 
| Prüfsumme SHA256 | f322ec99ce4ec1ae55cd6d2afef2a9b8e89b27957bec0474563c8247975bcea1 | 
| Link zum Herunterladen | libclass-data-accessor-perl_0.04004-1_all.deb | 
| Ausführliche Beschreibung | Class::Data::Accessor is the marriage of Class::Accessor and
Class::Data::Inheritable into a single module. It is used for creating
accessors to class properties that is overridable in subclasses as well as in
class instances.
.
For example:
.
  Pere::Ubu->mk_classaccessor('Suitcase');
.
will generate the method Suitcase() in the class Pere::Ubu.
.
This new method can be used to get and set a piece of class property.
.
  Pere::Ubu->Suitcase('Red');
  $suitcase = Pere::Ubu->Suitcase; |