コード例 #1
0
 void showAndLogError(String message, Exception e) {
   IStatus status = new Status(IStatus.ERROR, JEViewPlugin.getPluginId(), 0, message, e);
   JEViewPlugin.log(status);
   ErrorDialog.openError(getSite().getShell(), "JavaElement View", null, status); // $NON-NLS-1$
 }
コード例 #2
0
 private IJavaModel getJavaModel() {
   return JavaCore.create(JEViewPlugin.getWorkspace().getRoot());
 }
コード例 #3
0
 void showAndLogError(String message, CoreException e) {
   JEViewPlugin.log(message, e);
   ErrorDialog.openError(
       getSite().getShell(), "JavaElement View", message, e.getStatus()); // $NON-NLS-1$
 }