Changes between Version 10 and Version 11 of Document/Development/Standards/CodingStyle
- Timestamp:
- 06/06/07 17:25:15 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Document/Development/Standards/CodingStyle
v10 v11 112 112 As Perl syntax does not allow us to specify which methos are public, protected, or private we will stick to the following convention: 113 113 114 * Public methods will not need any prefix115 * Protected methods will start with '_', and its documentation will reflect that116 * 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 '_' 117 117 118 118 When overriding a method it is mandatory to refer to the documentation of the class which declared it.