01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tctest.longrunning;
05:
06: import com.tc.simulator.app.ApplicationConfig;
07:
08: public interface LongrunningGCTestAppConfig extends ApplicationConfig {
09: public long getLoopSleepTime();
10: }
|