lots of new docs,
[catagits/Catalyst-Runtime.git] / lib / Catalyst / ActionContainer.pm
index 337fdf6..6b3f282 100644 (file)
@@ -22,15 +22,31 @@ See L<Catalyst>.
 
 =head1 DESCRIPTION
 
+This is a container for actions. The dispatcher sets up a tree of these
+to represent the various dispatch points in your application.
+
 =head1 METHODS
 
-=over 4
+=head2 get_action($name)
+
+Returns an action from this container based on the action name, or undef
+
+=cut
+
+sub get_action {
+    my ( $self, $name ) = @_;
+    return $self->actions->{$name} if defined $self->actions->{$name};
+    return;
+}
+
+=head2 actions
 
-=item part
+Accessor to the actions hashref, containing all actions in this container.
 
-=item actions
+=head2 part
 
-=back
+Accessor to the path part this container resolves to. Also what the container
+stringifies to.
 
 =head1 AUTHOR