Is there a way to define a Java/Obj-C interface in djinni such that it can be implemented in Java instead of extended. I have run into issues with multiple extension limitations. Though there are work around I would like to know if this is possible.
widget_loader.djinni
widget_loader = interface +j {
load_widget()
unload_widget()
}
PurpleWidget.java
public class PurpleWidget extends WidgetLoader {
@Override
public void loadWidget()
{
loadPurpleWidget()
}
@Override
public void unloadWidget()
{
unloadPurpleWidget()
}
}