コード例 #1
0
 public boolean exists() {
   IFile f = getFile();
   return f != null && f.exists();
 }
コード例 #2
0
 public String getToolTipText() {
   IFile f = (IFile) EclipseResourceUtil.getResource(object);
   if (f != null && f.exists()) return f.getLocation().toString();
   return object.getPresentationString();
 }