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 OtherAssigned { private Long id; private ParentAssigned owner; public OtherAssigned() { } public OtherAssigned(Long id) { this.id = id; } public Long getId() { return id; } public ParentAssigned getOwner() { return owner; } public void setOwner(ParentAssigned owner) { this.owner = owner;
Clone fragments detected by clone detection tool
File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/generatedkeys/seqidentity/MyEntity.java File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/jpa/cascade/OtherAssigned.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public class MyEntity {
1
public class OtherAssigned {
2
	private Long id;
2
	private Long id;
3
	private String name;
3
	private 
4
	public MyEntity() {
5
	}
6
	public MyEntity(String name
4
ParentAssigned owner;
5
	public OtherAssigned() {
6
	}
7
) {
7
	public OtherAssigned(Long id) {
8
		this.name = name;
8
		this.id = id;
9
	}
9
	}
10
	public Long getId() {
10
	public Long getId() {
11
		return id;
11
		return id;
12
	}
12
	}
13
	public String getName() {
13
	public ParentAssigned getOwner() {
14
		return name;
14
		return owner;
15
	}
15
	}
16
	public void setName(String name) {
16
	public void setOwner(ParentAssigned owner) {
17
		this.name = name;
17
		this.owner = owner;
18
	
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