SSD2015 / TeamGG

Exceed Vote (server side) by TeamGG (@whs @winvaris @tandooky)
https://gg.whs.in.th/
1 stars 2 forks source link

Classes are documented #26

Open whs opened 9 years ago

whs commented 9 years ago

All classes and methods should be documented with Javadoc.

A Javadocs guideline/standard should be decided before starting this task.

whs commented 9 years ago

Here are some points we should apply from the Google's Java Style Guide

/**
 * Multiple lines of Javadoc text are written here,
 * wrapped normally...
 */
public int method(String p1) { ... }
/**
 * First paragraph goes here
 *
 * <p>Second paragraph goes here
 *
 * @param p1 Description of p1 goes here
 */
public int method(String p1) { ... }
whs commented 9 years ago

Here are some points we should apply from Oracle's How to Write Doc Comment:

Tags