More attribute => aspect changes. Add get_all_attributes_list, which returns a list of the names of all attributes.

This commit is contained in:
Colin Kuskie 2010-01-25 19:21:00 -08:00
parent d4f31870a3
commit 60375516ab
4 changed files with 26 additions and 9 deletions

View file

@ -66,7 +66,7 @@ sub get {
}
return undef;
}
my %properties = map { $_ => scalar $self->$_ } $self->meta->get_property_list;
my %properties = map { $_ => scalar $self->$_ } $self->meta->get_all_attributes_list;
return \%properties;
}