KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > simulator > control > NullControl


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.simulator.control;
5
6
7 public class NullControl implements Control {
8
9   public void waitForStart(long timeout) {
10     return;
11   }
12
13   public void notifyComplete() {
14     return;
15   }
16
17   public boolean waitForAllComplete(long timeout) {
18     return true;
19   }
20
21 }
22
Popular Tags