| Paketname | libclass-data-accessor-perl |
| Beschreibung | Inheritable, overridable class and instance data accessor creation |
| Archiv/Repository | Offizielles Ubuntu Archiv lucid (universe) |
| Version | 0.04004-1 |
| Sektion | universe/perl |
| Priorität | optional |
| Installierte Größe | 68 Byte |
| Hängt ab von | perl (>= 5.6.0-16) |
| Empfohlene Pakete | |
| Paketbetreuer | Ubuntu MOTU Developers |
| Quelle | |
| Paketgröße | 10448 Byte |
| Prüfsumme MD5 | 4045a3a065103f028a0748ca4d952340 |
| Prüfsumme SHA1 | e214776b6c4c92f886d04581df50913b68a048a5 |
| Prüfsumme SHA256 | 38b9535e4829727145947a7ae695fcf3865ca1e3a032b1cee205cb0c52d6d416 |
| 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;
|