Reputation: 7694
What's the de-facto solution for building dynamic implementation of interfaces and/or abstract classes? What I basically want is:
interface IMyEntity {
int getValue1();
void setValue1(int x);
}
...
class MyEntityDispatcher implements WhateverDispatcher {
public Object handleCall(String methodName, Object[] args) {
if(methodName.equals("getValue1")) {
return new Integer(123);
} else if(methodName.equals("setValue")) {
...
}
...
}
}
...
IMyEntity entity = Whatever.Implement<IMyEntity>(new MyEntityDispatcher());
entity.getValue1(); // returns 123
Upvotes: 11
Views: 17758
Reputation: 308131
It's the Proxy
class.
class MyInvocationHandler implements InvocationHandler {
Object invoke(Object proxy, Method method, Object[] args) {
if(method.getName().equals("getValue1")) {
return new Integer(123);
} else if(method.getName().equals("setValue")) {
...
}
...
}
}
InvocationHandler handler = new MyInvocationHandler();
IMyEntity e = (IMyEntity) Proxy.newProxyInstance(IMyEntity.class.getClassLoader(),
new Class[] { IMyEntity.class },
handler);
Upvotes: 20