final int res = setCallCount.incrementAndGet();
if (res >= MAX_SET_CALL_COUNT) {
isDisabled = true;
println("SYSTEM: You have made " + res + " calls to setXX methods without calling execute()");
throw new DisabledException("Too many calls to setXX methods");
}
}
}