public abstract class Vehicle { private Long id; private String vin; private String owner; public String getVin() { return vin; } public void setVin(String vin) { this.vin = vin; } public String getOwner() { return owner; } public void setOwner(String owner) { this.owner = owner;
public class Part implements Serializable { private String name; private String description; public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getName() { return name; } public void setName(String name) { this.name = name;
Clone fragments detected by clone detection tool
File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/hql/Vehicle.java File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/orphan/Part.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public abstract class Vehicle {
1
public 
2
	private Long id;
2
class Part implements Serializable {
3
	private String vin;
3
	private String name;
4
	private String owner;
4
	private String 
5
description;
5
	public String getVin() {
6
	public String getDescription() {
6
		return vin;
7
		return description;
7
	}
8
	}
8
	public void setVin(String vin) {
9
	public void set
9
		this.vin = vi
10
Description(String description) {
10
n;
11
		this.description = description;
11
	}
12
	}
12
	public String getOwner() {
13
	public String getName() {
13
		return owner;
14
		return name;
14
	}
15
	}
15
	public void setOwner(String owner) {
16
	public void setName(String name) {
16
		this.owner = owner;
17
		this.name = name;
17
	
18
	
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