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.tcsimulator;
05:
06: import com.tcsimulator.distrunner.ServerSpec;
07:
08: import java.util.Collection;
09:
10: public interface TestEnvironmentView {
11:
12: public ServerView getServerView();
13:
14: public Collection getClientViews();
15:
16: public void update(ServerSpec serverSpec, Collection clientSpecs);
17:
18: public void update(ServerSpec serverSpec);
19:
20: public void update(Collection clientSpecs);
21:
22: public int getIntensity();
23:
24: }
|