if (tagName == null || tagName.length() == 0) {
return;
}
List<IResource> resourcesList = projectFilesMap.get(project);
String[] componentNames = this.find(new NullProgressMonitor(), resourcesList);
tagLib.tagComponents(componentNames, tagName);
}
}
protected String[] find(IProgressMonitor monitor, List<IResource> resourcesList) {
ArrayList<String> components = new ArrayList<String>();