0

JavaScriptライブラリの周りにGWTラッパーを作成しています。JavaScript関数の1つは、引数として匿名オブジェクトを取ります。例:

obj.buildTabs({ hide: true, placeholder: 'placeholder' });

Java側では、このタイプのJavaScriptオブジェクトを作成して、ネイティブ実装に渡すにはどうすればよいですか?

現時点では、Java側で私は持っています:

public void buildTabs(TabConfiguration config) {
   // ?
}

private native void buildTabs(?) /*-{
        $wnd.NAMESPACE.lib.buildTabs(?);
}-*/;

どんなポインタでもありがたいです、ありがとう。

4

1 に答える 1

2

使用するパラメータが正確にわかっている場合は、次の操作を実行できます(::の後に追加の新しい行を削除します)

private native void buildTabs(TabConfiguration config) /*-{
        $wnd.NAMESPACE.lib.buildTabs({hide: 
                config.@com.yournamehere.TabConfiguration::
                getHide()(), 
                placeholder: 
                config.@com.yournamehere.TabConfiguration::
                getPlaceholder()()});
}-*/;

GWTドキュメントからの小さなクリップ:

public native void bar(JSNIExample x, String s) /*-{
    // Call instance method instanceFoo() on this
    this.@com.google.gwt.examples.JSNIExample::instanceFoo(Ljava/lang/String;)(s);

    // Call instance method instanceFoo() on x
    x.@com.google.gwt.examples.JSNIExample::instanceFoo(Ljava/lang/String;)(s);

    // Call static method staticFoo()
    @com.google.gwt.examples.JSNIExample::staticFoo(Ljava/lang/String;)(s);

    // Read instance field on this
    var val = this.@com.google.gwt.examples.JSNIExample::myInstanceField;

    // Write instance field on x
    x.@com.google.gwt.examples.JSNIExample::myInstanceField = val + " and stuff";

    // Read static field (no qualifier)
    @com.google.gwt.examples.JSNIExample::myStaticField = val + " and stuff";
  }-*/;
于 2009-09-22T08:02:12.043 に答える