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.perf.collections;
05:
06: import com.tc.simulator.app.ApplicationConfig;
07: import com.tc.simulator.listener.ListenerProvider;
08:
09: public class VectorPerfTestApp extends CollectionsPerfTestAppBase {
10: public VectorPerfTestApp(String appId, ApplicationConfig cfg,
11: ListenerProvider listenerProvider) {
12: super (appId, cfg, listenerProvider);
13: setCollection(new CollectionType.VectorCollection());
14: }
15: }
|