から所有者クラスに呼び出す -は以下のクラスを持つリスナー
public class GUIclass1 extends org.eclipse.swt.widgets.Composite {
private void initGUI() {
{
// The setting of the open file button.
openButton = new Button(this, SWT.PUSH | SWT.CENTER);
openButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent evt) {
foo() ;
}
});
}
}
public void foo() {
// implementation ..
}
}
あなたが方法foo()
への呼び出しがあるaddSelectionListener
以内に見ることができるように。
私の質問は - foo()
のプレフィックスとして、どのクラスに関連するのかを知るために書くべきです。
私はsuper().foo()
を試しましたが、成功しませんでした。