mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Added main attributes of javadocs. (#1850)
This commit is contained in:
parent
efec1d63ee
commit
ebd74da99a
@ -23,8 +23,17 @@ Multi-line comments look like this.
|
||||
*/
|
||||
|
||||
/**
|
||||
JavaDoc comments look like this. Used to describe the Class or various
|
||||
attributes of a Class.
|
||||
* JavaDoc comments look like this. Used to describe the Class or various
|
||||
* attributes of a Class.
|
||||
* Main attributes:
|
||||
*
|
||||
* @author Name (and contact information such as email) of author(s).
|
||||
* @version Current version of the program.
|
||||
* @since When this part of the program was first added.
|
||||
* @param For describing the different parameters for a method.
|
||||
* @return For describing what the method returns.
|
||||
* @deprecated For showing the code is outdated or shouldn't be used.
|
||||
* @see Links to another part of documentation.
|
||||
*/
|
||||
|
||||
// Import ArrayList class inside of the java.util package
|
||||
|
Loading…
Reference in New Issue
Block a user