をパラメーターとして使用する関数がorg.eclipse.swt.widget.Display
あります。そのプロジェクトを別のプロジェクトのライブラリとして使用し、その関数を呼び出して同じクラスを使用しますが、私の IDE (Eclipse および ItelliJ IDEA CE) は、パラメーターが予期されていないと言っています。
何が問題なのですか?
コードは次のとおりです。
AccessController.doPrivileged(new PrivilegedAction() {
public Object run() {
try {
startServer(port, getSession());
} catch (RmiException e) {
e.printStackTrace();
SWTErrorDialog.show(e, "Error while attaching JavaEngineServer to rmiregistry.exe", Display.getDefault());
}
return null;
}
});