如何創建包裝JSO而不是對其進行包裝的類?
public class PersonJso extends JavaScriptObject{
protected PersonJso() {}
public static native PersonJso create(String name) /*-{
return {name : name};
}-*/;
public final native String getName() /*-{
return this.name;
}-*/;
}
public class AnimalJso extends JavaScriptObject{
protected AnimalJso() {}
public static native PersonJso create(String name) /*-{
return {name : name};
}-*/;
public final native String getName() /*-{
return this.name;
}-*/;
}
public class AnimalWrapper implements hasName{
AnimalJso jso;
public AnimalWrapper(){}
public AnimalWrapper(AnimalJso jso){
this.jso = jso;
}
@Override
public String getName() {
return jso.getName();
}
}
public class PersonWrapper implements hasName{
PersonJso jso;
public PersonWrapper(){}
public PersonWrapper(PersonJso jso){
this.jso = jso;
}
@Override
public String getName() {
return jso.getName();
}
}
是的,我認爲這是一個解決方案,但我必須寫很多包裝(正好是雙!)。你認爲這是獨特的解決方案嗎? –
我猜想另一個解決方法可能是添加您打算用作空體接口的方法並創建CustomJSO。然後重新生成JSO來擴展CustomJSO。這樣您可以編寫一個包裝器,將您的任何JSO包裝爲CustomJSO,以便包裝器可以實現包含已添加到CustomJSO中的方法的任何接口。 – pistolPanties