01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14: * License for the specific language governing permissions and limitations
15: * under the License.
16: *
17: */
18:
19: /*
20: * Created on Sep 6, 2004
21: */
22: package org.apache.jmeter.save;
23:
24: import java.util.Collection;
25:
26: /**
27: * @author mstover
28: *
29: */
30: public class TestResultWrapper {
31: String version = "";
32:
33: Collection sampleResults;
34:
35: long testStartTime;
36:
37: /**
38: * @return Returns the sampleResults.
39: */
40: public Collection getSampleResults() {
41: return sampleResults;
42: }
43:
44: /**
45: * @param sampleResults
46: * The sampleResults to set.
47: */
48: public void setSampleResults(Collection sampleResults) {
49: this .sampleResults = sampleResults;
50: }
51:
52: /**
53: * @return Returns the testStartTime.
54: */
55: public long getTestStartTime() {
56: return testStartTime;
57: }
58:
59: /**
60: * @param testStartTime
61: * The testStartTime to set.
62: */
63: public void setTestStartTime(long testStartTime) {
64: this .testStartTime = testStartTime;
65: }
66:
67: /**
68: * @return Returns the version.
69: */
70: public String getVersion() {
71: return version;
72: }
73:
74: /**
75: * @param version
76: * The version to set.
77: */
78: public void setVersion(String version) {
79: this.version = version;
80: }
81: }
|