How do I get a method using reflection based on a parameter value when the parameter type is an interface?
In the following case (based on this example), newValue
would be a List<String>
called foo
. So I would call addModelProperty("Bar", foo);
But this only works for me if I don't use the interface and only use LinkedList<String> foo
. How do I use an interface for newValue
and get the method from model
that has an interface as the parameter addBar(List<String> a0)
?
public class AbstractController {
private final AbstractModel model;
public setModel(AbstractModel model) {
this.model = model;
}
protected void addModelProperty(String propertyName, Object newValue) {
try {
Method method = getMethod(model.getClass(), "add" + propertyName, newValue);
method.invoke(model, newValue);
} catch (NoSuchMethodException e) {
} catch (InvocationTargetException e) {
} catch (Exception e) {}
}
private Method getMethod(Class clazz, String name, Object parameter) {
return clazz.getMethod(name, parameter.getClass());
}
}
public class AbstractModel {
protected PropertyChangeSupport propertyChangeSupport;
protected void firePropertyChange(String propertyName, Object oldValue, Object newValue) {
propertyChangeSupport.firePropertyChange(propertyName, oldValue, newValue);
}
}
public class Model extends AbstractModel {
public void addList(List<String> list) {
this.list.addAll(list);
}
}
public class Controller extends AbstractController {
public void addList(List<String> list) {
addModelProperty(list);
}
}
public void example() {
Model model = new Model();
Controller controller = new Controller();
List<String> list = new LinkedList<String>();
list.add("example");
// addList in the model is only found if LinkedList is used everywhere instead of List
controller.addList(list);
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…