Changes between Version 2 and Version 3 of PROCESS


Ignore:
Timestamp:
09/18/08 15:46:30 (17 years ago)
Author:
pavlina
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PROCESS

    v2 v3  
    177177  * The code style is correct to our convention. 
    178178  * The code is easily readable. 
    179   * There are no fake JavaDocs (JavaDocs without useful information). 
     179  * There are no fake !JavaDocs (!JavaDocs without useful information). 
    180180  * The java-doc is complete enough. 
    181    * For each element, the JavaDoc should describe clearly what is it (if this is not easy, then probably the design is bad)  
     181   * For each element, the !JavaDoc should describe clearly what is it (if this is not easy, then probably the design is bad)  
    182182  * It causes 0 errors. 
    183183  * It causes 0 warnings. 
    184   * The @SuppressWarnings annotation is used only if really needed: 
     184  * The @!SuppressWarnings annotation is used only if really needed: 
    185185   * unused, when something is used only by reflection 
    186186   * synthetic-access, when you want to touch something internal with inner class (although in many cases this may be avoided)