return getParentStyle().findCounter(name, must);
}
// must is called by counter-increment
else if (must) {
// the caller should do the other setting.
ICounterValueGenerator counter = new CounterValueGenerator(
name, null, null, this);
counter.resetCount();
counters.put(name, counter);
}
}
return (ICounterValueGenerator) counters.get(name);
}