use of org.eclipse.titan.designer.parsers.ProjectConfigurationParser in project titan.EclipsePlug-ins by eclipse.
the class ReconcilingStrategy method analyze.
void analyze() {
final IFile file = (IFile) editor.getEditorInput().getAdapter(IFile.class);
if (file == null) {
return;
}
IProject project = file.getProject();
if (project == null) {
return;
}
ProjectConfigurationParser projectConfigurationParser = GlobalParser.getConfigSourceParser(project);
projectConfigurationParser.reportOutdating(file);
ProjectSourceParser projectSourceParser = GlobalParser.getProjectSourceParser(project);
projectSourceParser.analyzeAll();
}
Aggregations