Community
Participate
Working Groups
if (input.equals(editorRef.getEditorInput()))
return true;
String path = inputFile.getProjectRelativePath().toString();
if (path.equals("build.properties")) { //$NON-NLS-1$
if (path.equals("build.properties") || //$NON-NLS-1$
path.equals("META-INF/MANIFEST.MF") || //$NON-NLS-1$
path.equals("plugin.xml")) { //$NON-NLS-1$
IFile editorFile = ResourceUtil.getFile(editorRef.getEditorInput());
return editorFile != null && inputFile.getProject().equals(editorFile.getProject());
}