aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/UI/ViewPort/Collection
diff options
context:
space:
mode:
authorgroditi <groditi@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-01-08 01:52:05 +0000
committergroditi <groditi@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-01-08 01:52:05 +0000
commit2dba7201f38bfdf9a4132220d98b7691a5f9a257 (patch)
tree742ac95f6a0c40f6ca240d3a786a0c28986adb8b /lib/Reaction/UI/ViewPort/Collection
parent8deea8aae8207bc3fbbd88ce4408858aa6387437 (diff)
downloadreaction-2dba7201f38bfdf9a4132220d98b7691a5f9a257.tar.gz
reaction-2dba7201f38bfdf9a4132220d98b7691a5f9a257.zip
some boiler plate docs
Diffstat (limited to 'lib/Reaction/UI/ViewPort/Collection')
-rw-r--r--lib/Reaction/UI/ViewPort/Collection/Grid.pm45
1 files changed, 43 insertions, 2 deletions
diff --git a/lib/Reaction/UI/ViewPort/Collection/Grid.pm b/lib/Reaction/UI/ViewPort/Collection/Grid.pm
index ab33770..f881ebd 100644
--- a/lib/Reaction/UI/ViewPort/Collection/Grid.pm
+++ b/lib/Reaction/UI/ViewPort/Collection/Grid.pm
@@ -14,7 +14,7 @@ class Grid is 'Reaction::UI::ViewPort::Collection', which {
has computed_field_order => (is => 'ro', isa => 'ArrayRef', lazy_build => 1);
####################################
- implements _build_member_class => as { };
+ implements _build_member_class => as { Member };
implements _build_field_labels => as {
my $self = shift;
@@ -55,6 +55,47 @@ class Grid is 'Reaction::UI::ViewPort::Collection', which {
};
+1;
+__END__;
-1;
+=head1 NAME
+
+Reaction::UI::ViewPort::Collection
+
+=head1 DESCRIPTION
+
+This subclass of L<Reaction::UI::ViewPort::Collection> allows you to display a
+homogenous collection of Reaction::InterfaceModel::Objects as a grid.
+
+=head1 ATTRIBUTES
+
+=head2 field_order
+
+=head2 excluded_fields
+
+=head2 field_labels
+
+=head2 computed_field_order
+
+=head1
+
+=head1 INTERNAL METHODS
+
+These methods, although stable, are subject to change without notice. These are meant
+to be used only by developers. End users should refrain from using these methods to
+avoid potential breakages.
+
+=head1 SEE ALSO
+
+L<Reaction::UI::ViewPort::Collection>
+
+=head1 AUTHORS
+
+See L<Reaction::Class> for authors.
+
+=head1 LICENSE
+
+See L<Reaction::Class> for the license.
+
+=cut