Changes between Version 30 and Version 31 of GoodCodeExamples
- Timestamp:
- 05/20/09 17:26:02 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GoodCodeExamples
v30 v31 284 284 * Add yourself to the author list when you modify the logic, if your changes do not alter the logic don't do it. 285 285 * Write parameter descriptions on the next row. 286 * Use @see for methods or classes that are connected to your code. 287 * Use @since for comments of special changes since some date and write your identificator and the date. 288 * Use TODO, XXX and FIXME. 286 289 * Write all the @parameter, @return, descriptions as a sentences which begin with upper case letter and end with a punctuation mark. Write the description itself of the javadoc even for getters and setters, write it as sentences! 287 290 * Examples: … … 333 336 */ 334 337 }}} 338 * Comments: 339 * Comment all the hard to understand algorithmic structure you write. 340 * Delete all the auto-generated Eclipse TODO comments.