* Handles all the scope flush events.
* @param event The scope event
*/
public void scopeFlushed(ScopeEvent event) {
// Get the event type and process it
ScopeEventType eventType = event.getEventType();
if (eventType == ScopeEventType.ALL_SCOPES_FLUSHED) {
// All 4 scopes were flushed, increment the counters
for (int count = 1; count <= NB_SCOPES; count++) {
scopeFlushCount[count]++;