01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.simulator.control;
06:
07: public class NullControl implements Control {
08:
09: public void waitForStart() {
10: return;
11: }
12:
13: public void notifyComplete() {
14: return;
15: }
16:
17: public boolean waitForAllComplete(long timeout) {
18: return true;
19: }
20:
21: public void notifyMutationComplete() {
22: return;
23: }
24:
25: public boolean waitForMutationComplete(long timeout) {
26: return true;
27: }
28:
29: public void notifyValidationStart() {
30: return;
31: }
32:
33: public boolean waitForValidationStart(long timeout) {
34: return true;
35: }
36:
37: }
|