} else if (repository.isSystemErr(file)) {
editor.decorateText(TextStyles.SystemErrText.asTextDecorator());
} else {
editor.decorateText(TextStyles.DefaultMonoSpaced.asTextDecorator());
}
EditorCategory category = new EditorCategory("Client Log Files", PackageResources.View.ICON);
editor.setCategory(category);
editor.setSuggestedTargetNameForCopy(file.getName());
editor.setMementoPath(new String[] { "Application", "LogFile" });
return editor;
}