Changes between Version 30 and Version 31 of GoodCodeExamples


Ignore:
Timestamp:
05/20/09 17:26:02 (16 years ago)
Author:
meddle
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GoodCodeExamples

    v30 v31  
    284284  * Add yourself to the author list when you modify the logic, if your changes do not alter the logic don't do it. 
    285285  * 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. 
    286289  * 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! 
    287290  * Examples: 
     
    333336 */ 
    334337}}} 
     338 * Comments: 
     339  * Comment all the hard to understand algorithmic structure you write. 
     340  * Delete all the auto-generated Eclipse TODO comments.