public class ChildInfo { private Long id; private Child owner; private String info; public ChildInfo() { } public ChildInfo(String info) { this.info = info; } public Long getId() { return id; } public Child getOwner() { return owner; } public void setOwner(Child owner) { this.owner = owner; } public String getInfo() { return info; } public void setInfo(String info) { this.info = info
public class Speech { private Integer id; private String name; private Double length; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Double getLength() { return length; } public void setLength(Double length) { this.length = length; } 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/jpa/cascade/ChildInfo.java File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/sql/hand/Speech.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public class ChildInfo {
1
public class Speech {
2
	private Long id;
2
	private Integer id;
3
	private Child owner;
3
	private String name;
4
	private String info;
4
	private 
5
	public ChildInfo() {
6
	}
7
	public ChildInfo(String info) {
8
		this.info = info;
9
	}
10
	public Long getId() {
11
		return
5
Double length;
6
	public Integer getId() {
7
		return id;
8
	}
9
	public void setId(Integer id) {
12
 id;
10
		this.id = id;
13
	}
11
	}
14
	public Child getOwner() {
12
	public Double getLength() {
15
		return owner;
13
		return length;
16
	}
14
	}
17
	public void setOwner(Child owner) {
15
	public void set
18
		this.owner = owner
16
Length(Double length) {
19
;
17
		this.length = length;
20
	}
18
	}
21
	public String getInfo() {
19
	public String getName() {
22
		return info;
20
		return name;
23
	}
21
	}
24
	public void setInfo(String info) {
22
	public void setName(String name) {
25
		this.info = info
23
		this.name = name
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