用mozilla rhino覆盖java构造函数

时间:2016-02-15 03:10:14

标签: javascript java eclipse rhino

我正在尝试使用eclipsescript在脚本中子类化和覆盖Packages.org.eclipse.swt.widgets.Dialog的构造函数,但是我无法弄清楚构造函数的名称我传递给JavaAdapter的对象中的方法:

var searchDialog = new JavaAdapter(Packages.org.eclipse.swt.widgets.Dialog, {
    insert_name_of_first_constructor_here: function(){

    },
    insert_name_of_second_constructor_here: function(){

    },
    open: function(){
       return "hello";
    }
});

构造函数是否有特殊名称?

0 个答案:

没有答案