Add missing POD for get_all_settable_list in Definition::Meta::Class

This commit is contained in:
Colin Kuskie 2010-08-28 15:21:09 -07:00
parent f4d964bd69
commit a2760b2967

View file

@ -148,6 +148,15 @@ sub get_all_property_list {
return @names;
}
#-------------------------------------------------------------------
=head2 get_all_settable_list ( )
Returns an array of the names of all Properties, in all classes, in the order they were
created in the Definition, that have the WebGUI::Definition::Meta::Settable role applied.
=cut
sub get_all_settable_list {
my $self = shift;
my @names = ();