-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdvJava_Ch18_17_OwnJavaDocs.java
More file actions
29 lines (22 loc) · 1.2 KB
/
AdvJava_Ch18_17_OwnJavaDocs.java
File metadata and controls
29 lines (22 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package AdvancedJava;
public class AdvJava_Ch18_17_OwnJavaDocs {
/* Since each and every people doesn't know how to code in frontend
i.e. using languages like HTML , CSS and javascript
Java came out with a support for all, so that people who doesn't have frontend knowledge can also make their JavaDocs using 'javadoc'.
In IntelliJ Idea just go to
* Tools > Generate JavaDoc > Select Desired settings > Select a javadoc path > Checkbox - open javadoc in browser and there you go ... A personal javadoc is ready. */
/* Javadoc includes very basic knowledge, 1. Your constructors used - Summary
2. Used Method Summary etc.
IntelliJ Idea creates many commands which we do not have to type afterward -
Javadoc - generates the java documentation automatically in HTML format
To create a more immersive documentation - java provides us with TAGS - */
/* ** Manually Create JavqDocs
* Syntax - "File_Path" attributes -d "Path_To_Save_Generated_Doc"
* Attributes are:
1. -protected
2. -use
3. -version
4. -author
5. -splitindex etc.
*/
}