public class Item { private Long id; private String name; private String description; public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } 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 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/testing/src/main/java/org/hibernate/test/cache/Item.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 Item {
1
public class Being {
2
	private Long id;
2
	private long id;
3
	private String name;
3
	private String identity;
4
	private String description;
4
	private String 
5
	
6
	public String getDescription() {
7
		return description
5
location;
8
;
6
	private String species;
9
	}
7
	
10
	public void setDescription(String description) {
8
	public void setLocation(String location) {
11
		this.description = description;
9
		this.location = location;
12
	}
10
	}
13
	public Long getId() {
11
	public String getLocation() {
14
		return id;
12
		return location;
15
	}
13
	}
16
	public void setId(Long id) {
14
	public void set
17
		this.id = id
15
Species(String species) {
18
;
16
		this.species = species;
19
	}
17
	}
20
	public String getName() {
18
	public String getSpecies() {
21
		return name;
19
		return species;
22
	}
20
	}
23
	public void setName(String name) {
21
	public void set
24
		this.name = name
22
Identity(String identity) {
23
		this.identity = identity;
24
	}
25
	public String getIdentity() {
25
;
26
		return identity;
26
	
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