}
}
}
if (isClass()) {
AnalystClassItem item;
// is this a new class?
if (!this.classMap.containsKey(str)) {
item = new AnalystClassItem(str, str, 1);
this.classMap.put(str, item);
// do we have too many different classes?
final int max = this.script.getProperties().getPropertyInt(
ScriptProperties.SETUP_CONFIG_MAX_CLASS_COUNT);
if (this.classMap.size() > max) {
setClass(false);
}
} else {
item = this.classMap.get(str);
item.increaseCount();
}
}
}