Changes between Version 10 and Version 11 of Document/Development/Standards/CodingStyle

Show
Ignore:
Timestamp:
06/06/07 17:25:15 (6 years ago)
Author:
juruen@… (IP: 88.26.177.14)
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Document/Development/Standards/CodingStyle

    v10 v11  
    112112As Perl syntax does not allow us  to specify which methos are public, protected, or private we will stick to the following convention: 
    113113 
    114 * Public methods will not need any prefix 
    115 * Protected methods will start with '_',  and its documentation will reflect that 
    116 * Private methods will start with '_' 
     114 * Public methods will not need any prefix 
     115 * Protected methods will start with '_',  and its documentation will reflect that 
     116 * Private methods will start with '_' 
    117117 
    118118When overriding a method it is mandatory to refer to the documentation of the class which declared it.