* Clears controller statistics.
*
*/
protected void clearStats() {
LongNumericStatistic statistic;
Statistics stats = getMonitor().getStatistics("");
Set set = stats.entrySet();
for (Iterator it = set.iterator(); it.hasNext();) {
Map.Entry entry = (Map.Entry) it.next();
if (entry != null && entry.getValue() != null
&& entry.getValue() instanceof LongNumericStatistic) {
((LongNumericStatistic) entry.getValue()).reset();