I've got one really big .java class file that has a lot of members. How do I create HTML documentation for this so it shows me the members in order of appearance, without sorting by member type? (methods, constants and variables)
For example if my Java code is:
private int typeOfAction_1; // notice the order: 1,2,3..
public void startAction_2(){
}
private int jobtype_3;
private int jobcount_4;
private void doJob_5(){
}
public void haltAction_6(){
}
Javadoc orders members in alphabetical order and sorted by type, and therefore the relations between members are lost:
int jobcount_4; // notice how the order is lost: 4,3,1..
int jobtype_3;
int typeOfAction_1;
doJob_5()
haltAction_6()
startAction_2()
Also, are there documentation generates with smarter features? like:
- Extraction of nearby comments for methods & variables
- Size of methods - Lines of Code