i want to build a program that can read java files and find all the METHODS in those files and print it all..
suppose, in one java file contains methods like these:
public ReturnValues(Object first, Object second) {
.....
}
public Object getFirst() {
return first; }
public Object getSecond() {
return second; }
}
public int total(int x, int y){
...
}
public void result(){
return; }
the output should like this:
Quote
Return Value:............ Method Name:......... Parameter: ...............
anybody pls tell me or give some suggestion how can i build this program ?
This post has been edited by doha786: 24 March 2010 - 02:30 AM

New Topic/Question
Reply



MultiQuote






|