public class Joiner { private Long id; private String name; private String joinedName; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getJoinedName() { return joinedName; } public void setJoinedName(String joinedName) { this.joinedName = joinedName;
public class Being { private long id; private String identity; private String location; private String species; public void setLocation(String location) { this.location = location; } public String getLocation() { return location; } public void setSpecies(String species) { this.species = species; } public String getSpecies() { return species; } public void setIdentity(String identity) { this.identity = identity; } public String getIdentity() { return identity;
Clone fragments detected by clone detection tool
File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/hql/Joiner.java File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/subselect/Being.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public class Joiner {
1
public class Being {
2
	private Long id;
2
	private long id;
3
	private String name;
3
	private String identity;
4
	private String joinedName;
4
	private String location;
5
	public Long getId() {
5
	p
6
		return id;
6
rivate String species;
7
	}
7
	
8
	public void setId(Long id) {
8
	public void set
9
		this.id = id
9
Location(String location) {
10
;
10
		this.location = location;
11
	}
11
	}
12
	public String getName() {
12
	public String getLocation() {
13
		return name;
13
		return location;
14
	}
14
	}
15
	public void setName(String name) {
15
	public void setSpecies(String species) {
16
		this.name = name;
16
		this.species = species;
17
	}
17
	}
18
	public String getJoinedName() {
18
	public String getSpecies() {
19
		return joinedName;
19
		return species;
20
	}
20
	}
21
	public void setJoinedName(String joinedName) {
21
	public void set
22
		this.joinedName = joinedName
22
Identity(String identity) {
23
		this.identity = identity;
24
	}
25
	public String getIdentity() {
23
;
26
		return identity;
24
	
27
	
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