[Moose-commits] r7802 - in MooseX-GlobRef/trunk: . lib/MooseX lib/MooseX/GlobRef/Role lib/MooseX/GlobRef/Role/Meta

dexter at code2.0beta.co.uk dexter at code2.0beta.co.uk
Fri Feb 27 12:50:15 GMT 2009


Author: dexter
Date: 2009-02-27 04:50:15 -0800 (Fri, 27 Feb 2009)
New Revision: 7802

Modified:
   MooseX-GlobRef/trunk/Changes
   MooseX-GlobRef/trunk/lib/MooseX/GlobRef.pm
   MooseX-GlobRef/trunk/lib/MooseX/GlobRef/Role/Meta/Instance.pm
   MooseX-GlobRef/trunk/lib/MooseX/GlobRef/Role/Object.pm
Log:
* POD: UML-like notation for methods description.

Modified: MooseX-GlobRef/trunk/Changes
===================================================================
--- MooseX-GlobRef/trunk/Changes	2009-02-26 17:07:56 UTC (rev 7801)
+++ MooseX-GlobRef/trunk/Changes	2009-02-27 12:50:15 UTC (rev 7802)
@@ -1,5 +1,5 @@
 ------------------------------------------------------------------------
-0.07 | Piotr Roszatycki <dexter at debian.org> | 2009-02-19
+0.07 | Piotr Roszatycki <dexter at debian.org> | 2009-02-27
 
 Changes:
 

Modified: MooseX-GlobRef/trunk/lib/MooseX/GlobRef/Role/Meta/Instance.pm
===================================================================
--- MooseX-GlobRef/trunk/lib/MooseX/GlobRef/Role/Meta/Instance.pm	2009-02-26 17:07:56 UTC (rev 7801)
+++ MooseX-GlobRef/trunk/lib/MooseX/GlobRef/Role/Meta/Instance.pm	2009-02-27 12:50:15 UTC (rev 7802)
@@ -38,7 +38,7 @@
 
 =over
 
-=item create_instance(I<>) : Object
+=item <<override>> B<create_instance>(I<>) : Object
 
 =cut
 
@@ -55,7 +55,7 @@
 };
 
 
-=item clone_instance( I<instance> : Object ) : Object
+=item <<override>> B<clone_instance>( I<instance> : Object ) : Object
 
 =cut
 
@@ -71,7 +71,7 @@
     return bless $fh => $self->_class_name;
 };
 
-=item get_slot_value( I<instance> : Object, I<slot_name> : Str ) : Any
+=item <<override>> B<get_slot_value>( I<instance> : Object, I<slot_name> : Str ) : Any
 
 =cut
 
@@ -81,7 +81,7 @@
 };
 
 
-=item set_slot_value( I<instance> : Object, I<slot_name> : Str, I<value> : Any ) : Any
+=item <<override>> B<set_slot_value>( I<instance> : Object, I<slot_name> : Str, I<value> : Any ) : Any
 
 =cut
 
@@ -91,7 +91,7 @@
 };
 
 
-=item deinitialize_slot( I<instance> : Object, I<slot_name> : Str ) : Any
+=item <<override>> B<deinitialize_slot>( I<instance> : Object, I<slot_name> : Str ) : Any
 
 =cut
 
@@ -101,7 +101,7 @@
 };
 
 
-=item is_slot_initialized( I<instance> : Object, I<slot_name> : Str ) : Bool
+=item <<override>> B<is_slot_initialized>( I<instance> : Object, I<slot_name> : Str ) : Bool
 
 =cut
 
@@ -111,7 +111,7 @@
 };
 
 
-=item weaken_slot_value( I<instance> : Object, I<slot_name> : Str )
+=item <<override>> B<weaken_slot_value>( I<instance> : Object, I<slot_name> : Str )
 
 =cut
 
@@ -121,7 +121,7 @@
 };
 
 
-=item inline_create_instance( I<class_variable> : Str ) : Str
+=item <<override>> B<inline_create_instance>( I<class_variable> : Str ) : Str
 
 =cut
 
@@ -131,7 +131,7 @@
 };
 
 
-=item inline_slot_access( I<instance_variable> : Str, I<slot_name> : Str ) : Str
+=item <<override>> B<inline_slot_access>( I<instance_variable> : Str, I<slot_name> : Str ) : Str
 
 The methods overridden by this class.
 

Modified: MooseX-GlobRef/trunk/lib/MooseX/GlobRef/Role/Object.pm
===================================================================
--- MooseX-GlobRef/trunk/lib/MooseX/GlobRef/Role/Object.pm	2009-02-26 17:07:56 UTC (rev 7801)
+++ MooseX-GlobRef/trunk/lib/MooseX/GlobRef/Role/Object.pm	2009-02-27 12:50:15 UTC (rev 7802)
@@ -64,7 +64,7 @@
 
 =over
 
-=item <<around>> dump( I<maxdepth> : Int = 1 ) : Array|Str
+=item <<around>> B<dump>( I<maxdepth> : Int = 1 ) : Array|Str
 
 Dumps the object itself and also a hash slot of glob reference of this object.
 It returns an array or string depended on context.

Modified: MooseX-GlobRef/trunk/lib/MooseX/GlobRef.pm
===================================================================
--- MooseX-GlobRef/trunk/lib/MooseX/GlobRef.pm	2009-02-26 17:07:56 UTC (rev 7801)
+++ MooseX-GlobRef/trunk/lib/MooseX/GlobRef.pm	2009-02-27 12:50:15 UTC (rev 7802)
@@ -77,7 +77,7 @@
 
 =over
 
-=item init_meta
+=item B<init_meta>( I<args> : Hash ) : Moose::Meta::Class
 
 See L<Moose::Exporter>.
 




More information about the Moose-commits mailing list