Changes between Version 1 and Version 2 of JAVADOC_CONVENTIONS
- Timestamp:
- 09/16/08 17:43:15 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
JAVADOC_CONVENTIONS
v1 v2 19 19 *@param - one for each parameter in the order of appearance in the method declaration. Should be stated what is the parameter meaning, its usage, preconditions about it, whether it is modified or not, if it could be null, etc. 20 20 *@return - description of the return value, with focus on different return values such as errors or branch scenarios (e.g. when true, when false). 21 *@throws (or @exception - both are equivalent) - one for each checked exception (those that extend from Exception). There should be clearly stated in what cases the exceptions appear. There may be @throws for unchecked exceptions (that extend RuntimeException and Error), but this is not encouraged - only if the developer considers it very important to notify for an unchecked exception.21 *@throws (or @exception - both are equivalent) - one for each checked exception (those that extend from Exception). There should be clearly stated in what cases the exceptions appear. There may be @throws for unchecked exceptions (that extend !RuntimeException and Error), but this is not encouraged - only if the developer considers it very important to notify for an unchecked exception. 22 22 *There could be other tags in the following order (@author - not encouraged in Sophie-JR; @version - repository revision, not encouraged; @see class name; @since tag in which appears, not encouraged; @depracated - nice style is to provide @see or @link tag to the method to be used instead.) 23 23 * Classes: brief and informative description of what the class does. There could be also sample usage added. Not tags are compulsory. … … 32 32 33 33 ''' Notes on style ''' 34 * <code> ClassName</code> may be used when class names or method names are referred.34 * <code>!ClassName</code> may be used when class names or method names are referred. 35 35 * "this" keyword (not the, or the object) should be used when referring to the object in use. 36 36 * when referring to another method no parentheses should be used (e.g. ...the add method...), except an exact argument list is provided (e.g. ...the add(int x, int y) method...)