我正在尝试使用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";
}
});
构造函数是否有特殊名称?