Is there any open source utility (jar) for handling reflection in java.
Like I'm passing methods Dynamically to a class , I would like to fetch the return value.
For Example ,
class Department {
String name ;
Employee[] employees;
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
public Employee[] getEmployes() {
return employees;
}
}
By Simply passing the deparment object to a method and I would like to print all the employees to the console output.
The reflection I would like to use as ,
Deparment dept = new Deaprtment();
// add employess..
getEmployeeNames(dept,"getEmployes.getAddress.getStreet");
// assume Employee object has Address class and the address class has street string variable.
Is there any opensource on reflection to accommodate some thing like this.
getEmployes()returns an array? There will be no methodgetAddress()on an[].. – dacwe Dec 8 '10 at 7:15