I have an issue with Java Reflection. Here's my code very much simplified.
Let's say we have this class :
public class MyClassA {
private MyClassB myPropertyB_1;
private MyClassB myPropertyB_2;
...
}
And this class (which is used as a property for MyClassA :
public class MyClassB {
private int myProperty;
public MyClassB(){
}
...
}
I would like to use Java Reflection to do something like this, in MyClassA :
public void methodThatUsesReflectionOnProperty(int id){
// 1. Get the field using id
// 2. Instantiate this field dynamically (i.e. new MyClassB() )
// 3. Invoke some methods on this field dynamically (setters, addlisteners...)
}
How could I do this ?
MyClassAand provide getter setter methods to allow other classes to access and modify them? – Duncan Jones Jul 25 '12 at 14:58