Generate documentation for project:
public class FirstClass{
/* Here is the statements in documentation*/
int user_name;
int user_emailID;
public int getUser_name(){
return user_name;
}
public void setUser_name(int user_name){
this.user_name=user_name;
}
public int getUser_emailID(){
return user_emailID(){
}
public void setUser_emailID(int user_emailID){
this.user_emailID=user_emailID;
}
}
After generating the documentation of the project, you will get a new folder in the project explorer named as ‘doc’. Open ‘index.HTML’ within the ‘doc’ folder and there we can find the project documentation.