1 4 package com.tcsimulator; 5 6 import java.util.ArrayList ; 7 import java.util.Iterator ; 8 import java.util.List ; 9 10 public class ContainerSpec { 11 12 private final String testHome; 13 private final int executionCount; 14 private final String vmName; 15 private final List jvmOpts; 16 17 public ContainerSpec(String vmName, String testHome, int executionCount, List jvmOpts) { 18 this.vmName = vmName; 19 this.testHome = testHome; 20 this.executionCount = executionCount; 21 this.jvmOpts = jvmOpts; 22 } 23 24 public ContainerSpec copy() { 25 List jvmOptsCopy = new ArrayList (); 26 jvmOptsCopy.addAll(jvmOpts); 27 return new ContainerSpec(vmName, testHome, executionCount, jvmOptsCopy); 28 } 29 30 public String getTestHome() { 31 return testHome; 32 } 33 34 public int getExecutionCount() { 35 return executionCount; 36 } 37 38 public String getVmName() { 39 return vmName; 40 } 41 42 public List getJvmOpts() { 43 return jvmOpts; 44 } 45 46 public String toString() { 47 StringBuffer jopts = new StringBuffer (); 48 for (Iterator i = jvmOpts.iterator(); i.hasNext();) { 49 jopts.append((String ) i.next()); 50 } 51 return "vmName: " + vmName + ", testHome: " + testHome + ", executionCount: " + executionCount + ", jvmOpts: " 52 + jopts.toString(); 53 } 54 } 55
| Popular Tags
|