public class BagOwner { private String name; private BagOwner parent; private List children = new ArrayList(); public BagOwner() { } public BagOwner(String name) { this.name = name; } public String getName() { return name; } public void setName(String name) { this.name = name; } public BagOwner getParent() { return parent; } public void setParent(BagOwner parent) { this.parent = parent; } public List getChildren() { return children; } public void setChildren(List children) { this.children = children
public class Group { private Long id; private List persons = new ArrayList(); private String name; public Group() { } public Group(String name) { this.name = name; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public List getPersons() { return persons; } public void setPersons(List persons) { this.persons = persons; } 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/collection/bag/BagOwner.java File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/sql/hand/Group.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public class BagOwner {
1
public class Group {
2
	private String name;
2
	private 
3
	private BagOwner parent;
3
Long id;
4
	private List children = new ArrayList();
4
	private List persons = new ArrayList();
5

5
	private String name;
6
	public BagOwner() {
6
	public Group() {
7
	}
7
	}
8

9
	public BagOwner(String name) {
8
	public Group(String name) {
10
		this.name = name;
9
		this.name = name;
11
	}
10
	}
12

13
	public String getName() {
11
	public Long getId() {
14
		return name;
12
		return 
15
	}
16

13
id;
14
	}
17
	public void setName(String name) {
15
	public void setId(Long id) {
18
		this.name = name;
16
		this.
19
	}
20

17
id = id;
18
	}
21
	public BagOwner getParent() {
19
	public List getPersons() {
22
		return parent;
20
		return p
23
	}
24

21
ersons;
22
	}
25
	public void setParent(BagOwner parent) {
23
	public void setPersons(List persons) {
26
		this.parent = parent;
24
		this.p
27
	}
28
	public List getChildren
25
ersons = persons;
26
	}
29
() {
27
	public String getName() {
30
		return children;
28
		return 
31
	}
32

29
name;
30
	}
33
	public void setChildren(List children) {
31
	public void setName(String name) {
34
		this.children = children
32
		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