} catch (CoreException e) {
LogService.error(e.getMessage(), e);
}
} else if (input instanceof FileStoreEditorInput) {
try {
IFileStore fileStore = EFS
.getStore(((FileStoreEditorInput) input).getURI());
validationResult = MeiResourceReader
.validateMEIInstance(fileStore.openInputStream(
EFS.NONE, new NullProgressMonitor()));
openNewEditorTab(fileStore.getName(), validationResult,
fileStore.openInputStream(EFS.NONE,
new NullProgressMonitor()));
} catch (CoreException e) {
LogService.error(e.getMessage(), e);
}
} else {