[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[3511] trunk/LedgerSMB/DBObject



Revision: 3511
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=3511&view=rev
Author:   einhverfr
Date:     2011-07-14 21:04:23 +0000 (Thu, 14 Jul 2011)

Log Message:
-----------
Doc strings for Customer.pm and Vendor.pm

Modified Paths:
--------------
    trunk/LedgerSMB/DBObject/Customer.pm
    trunk/LedgerSMB/DBObject/Vendor.pm

Modified: trunk/LedgerSMB/DBObject/Customer.pm
===================================================================
--- trunk/LedgerSMB/DBObject/Customer.pm	2011-07-14 20:57:50 UTC (rev 3510)
+++ trunk/LedgerSMB/DBObject/Customer.pm	2011-07-14 21:04:23 UTC (rev 3511)
@@ -1,3 +1,28 @@
+
+=head1 NAME
+
+LedgerSMB::DBObject::Customer, LedgerSMB Class for Customers
+
+=head1 SYNOPSIS
+
+This library contains the base utility functions for creating, saving, and
+retrieving customers.
+
+=head1 INHERITS
+
+LedgerSMB::DBObject::Company
+
+=head1 METHODS
+
+=over
+
+=item set_entity_class
+
+Sets entity_class to 2.
+
+=cut
+
+
 package LedgerSMB::DBObject::Customer;
 
 use base qw(LedgerSMB::DBObject::Company);
@@ -12,4 +37,14 @@
 
 }
     
+=back
+
+=head1 COPYRIGHT
+
+Copyright (c) 2009, the LedgerSMB Core Team.  This is licensed under the GNU 
+General Public License, version 2, or at your option any later version.  Please 
+see the accompanying License.txt for more information.
+
+=cut
+
 1;

Modified: trunk/LedgerSMB/DBObject/Vendor.pm
===================================================================
--- trunk/LedgerSMB/DBObject/Vendor.pm	2011-07-14 20:57:50 UTC (rev 3510)
+++ trunk/LedgerSMB/DBObject/Vendor.pm	2011-07-14 21:04:23 UTC (rev 3511)
@@ -1,3 +1,29 @@
+
+
+=head1 NAME
+
+LedgerSMB::DBObject::Vendor, LedgerSMB Class for Vendors
+
+=head1 SYNOPSIS
+
+This library contains the base utility functions for creating, saving, and
+retrieving vendors.
+
+=head1 INHERITS
+
+LedgerSMB::DBObject::Company
+
+=head1 METHODS
+
+=over
+
+=item set_entity_class
+
+Sets entity_class to 1.
+
+=cut
+
+
 package LedgerSMB::DBObject::Vendor;
 
 use base qw(LedgerSMB::DBObject::Company);
@@ -10,4 +36,14 @@
     $self->{entity_class} = $ENTITY_CLASS;
 }
     
+=back
+
+=head1 COPYRIGHT
+
+Copyright (c) 2009, the LedgerSMB Core Team.  This is licensed under the GNU 
+General Public License, version 2, or at your option any later version.  Please 
+see the accompanying License.txt for more information.
+
+=cut
+
 1;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.