public static class Content { private String name; public Content() { } public Content(String name) { this.name = name; } public String getName() { return name; } public void setName(String name) { this.name = name
public class Employee { private String id; public Employee() { } public Employee(String id) { this.id = id; } public String getId() { return id; } public void setId(String id) { this.id = id
Clone fragments detected by clone detection tool
File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/collection/set/Container.java File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/unconstrained/Employee.java
Method name: Method name:
Number of AST nodes: 0 Number of AST nodes: 0
1
public static class Content {
1
public class Employee {
2
	
2
	
3
	private String name;
3
	private String id;
4
		public Content() {
4
	public Employee() {
5
		}
5
	}
6
		public Content(String name) {
6
	public Employee(String id) {
7
			this.name = name;
7
		this.id = id;
8
		}
8
	}
9
		public String getName() {
9
	public String getId() {
10
			return name;
10
		return id;
11
		}
11
	}
12
	
12
	
13
	public void setName(String name) {
13
	public void setId(String id) {
14
			this.name = name
14
		this.id = id
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