空のインターフェースを拡張するのは正しいですか?あるときはクラスで、次回は別のクラスになる可能性のあるパラメーター(EventCLass myEvent)を持つメソッド(EventPlayer)が必要です。
public interface EventClass {
// ... empty ...
}
public interface EventClassExt1 extends EventClass {
public void firstEvent();
public void secondEvent();
}
public interface EventClassExt2 extends EventClass {
public void thirdEvent(String text);
}
public EventPlayer(final EventCLass myEvent)