public class MyEntity { private Long id; private String name; public MyEntity() { } public MyEntity(String name) { this.name = name; } public Long getId() { return id; } public String getName() { return name; } public void setName(String name) { this.name = name;
public class Person { private Long id; private Identity identity; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Identity getIdentity() { return identity; } public void setIdentity(Identity identity) { this.identity = identity;
Clone fragments detected by clone detection tool
File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/generatedkeys/select/MyEntity.java File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/propertyref/component/partial/Person.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public class MyEntity {
1
public class Person {
2
	private Long id;
2
	private Long id;
3
	private String name;
3
	private 
4
	public MyEntity() {
5
	}
6
	public MyEntity(String name
4
Identity identity;
5
	
7
) {
6
	public Long getId() {
8
		this.name = name;
7
		return id;
9
	}
8
	}
9

10
	public Long getId() {
10
	public void setId(Long id) {
11
		return id;
11
		this.id = id;
12
	}
12
	}
13

13
	public String getName() {
14
	public Identity getIdentity() {
14
		return name;
15
		return identity;
15
	}
16
	}
17

16
	public void setName(String name) {
18
	public void setIdentity(Identity identity) {
17
		this.name = name;
19
		this.identity = identity;
18
	
20
	
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