9
インタフェースおよび/または抽象クラスの動的実装を構築するためのデファクトソリューションとは何ですか?私は基本的にしたいことは次のとおりです。Javaのインタフェース/抽象クラスの動的実装
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
プロキシは、抽象クラスではなく、インタフェースでのみ使用できます。 –