public class ListenerResultWrapper { String version = ""; Collection calculatedResults; long testStartTime; /** * @return Returns the sampleResults. */ public Collection getSampleResults() { return calculatedResults; } /** * @param results * The sampleResults to set. */ public void setSampleResults(Collection results) { this.calculatedResults = results; } /** * @return Returns the testStartTime. */ public long getTestStartTime() { return testStartTime; } /** * @param testStartTime * The testStartTime to set. */ public void setTestStartTime(long testStartTime) { this.testStartTime = testStartTime; } /** * @return Returns the version. */ public String getVersion() { return version; } /** * @param version * The version to set. */ public void setVersion(String version) { this.version = version;
public class TestResultWrapper { String version = ""; Collection sampleResults; long testStartTime; /** * @return Returns the sampleResults. */ public Collection getSampleResults() { return sampleResults; } /** * @param sampleResults * The sampleResults to set. */ public void setSampleResults(Collection sampleResults) { this.sampleResults = sampleResults; } /** * @return Returns the testStartTime. */ public long getTestStartTime() { return testStartTime; } /** * @param testStartTime * The testStartTime to set. */ public void setTestStartTime(long testStartTime) { this.testStartTime = testStartTime; } /** * @return Returns the version. */ public String getVersion() { return version; } /** * @param version * The version to set. */ public void setVersion(String version) { this.version = version;
Clone fragments detected by clone detection tool
File path: /jakarta-jmeter-2.3.2/src/org/apache/jmeter/save/ListenerResultWrapper.java File path: /jakarta-jmeter-2.3.2/src/org/apache/jmeter/save/TestResultWrapper.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public class ListenerResultWrapper {
1
public class TestResultWrapper {
2
	String version = "";
2
	String version = "";
3
	Collection calculatedResults;
3
	Collection sampleResults;
4
	long testStartTime;
4
	long testStartTime;
5
	/**
5
	/**
6
	 * @return Returns the sampleResults.
6
	 * @return Returns the sampleResults.
7
	 */
7
	 */
8
	public Collection getSampleResults() {
8
	public Collection getSampleResults() {
9
		return calculatedResults;
9
		return sampleResults;
10
	}
10
	}
11
	/**
11
	/**
12
	 * @param results
12
	 * @param sampleResults
13
	 *            The sampleResults to set.
13
	 *            The sampleResults to set.
14
	 */
14
	 */
15
	public void setSampleResults(Collection results) {
15
	public void setSampleResults(Collection sampleResults) {
16
		this.calculatedResults = results;
16
		this.sampleResults = sampleResults;
17
	}
17
	}
18
	/**
18
	/**
19
	 * @return Returns the testStartTime.
19
	 * @return Returns the testStartTime.
20
	 */
20
	 */
21
	public long getTestStartTime() {
21
	public long getTestStartTime() {
22
		return testStartTime;
22
		return testStartTime;
23
	}
23
	}
24
	/**
24
	/**
25
	 * @param testStartTime
25
	 * @param testStartTime
26
	 *            The testStartTime to set.
26
	 *            The testStartTime to set.
27
	 */
27
	 */
28
	public void setTestStartTime(long testStartTime) {
28
	public void setTestStartTime(long testStartTime) {
29
		this.testStartTime = testStartTime;
29
		this.testStartTime = testStartTime;
30
	}
30
	}
31
	/**
31
	/**
32
	 * @return Returns the version.
32
	 * @return Returns the version.
33
	 */
33
	 */
34
	public String getVersion() {
34
	public String getVersion() {
35
		return version;
35
		return version;
36
	}
36
	}
37
	/**
37
	/**
38
	 * @param version
38
	 * @param version
39
	 *            The version to set.
39
	 *            The version to set.
40
	 */
40
	 */
41
	public void setVersion(String version) {
41
	public void setVersion(String version) {
42
		this.version = version;
42
		this.version = version;
43
	
43
	
Summary
Number of common nesting structure subtrees0
Number of refactorable cases0
Number of non-refactorable cases0
Time elapsed for finding largest common nesting structure subtrees (ms)0.0
Clones location
Number of node comparisons0