public class Person {
private Long id;
private String name;
private Object data;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Object getData() {
return data;
}
public void setData(Object data) {
this.data = data
public class Being {
private long id;
private String identity;
private String location;
private String species;
public void setLocation(String location) {
this.location = location;
}
public String getLocation() {
return location;
}
public void setSpecies(String species) {
this.species = species;
}
public String getSpecies() {
return species;
}
public void setIdentity(String identity) {
this.identity = identity;
}
public String getIdentity() {
return identity
Clone fragments detected by clone detection tool
File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/any/Person.java
|
|
File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/subselect/Being.java
|
Method name:
|
|
Method name:
|
Number of AST nodes: 0
|
|
Number of AST nodes: 0
|
|
1 | public class Person {
↵ | | 1 | public class Being {↵
|
2 | private Long id;
↵ | | 2 | private long id;↵
|
3 | private String name;
↵ | | 3 | private String identity;↵
|
4 | private Object data;↵ | | 4 | private ↵
|
|
|
5 | public Long getId() {↵ | | |
|
6 | return id;↵ | | |
|
7 | }↵ | | |
|
|
8 | public void setId(Long id↵ | | 5 | String location;↵
|
| | | 6 | private String species;↵
|
| | | 7 | ↵
|
9 | ) {
↵ | | 8 | public void setLocation(String location) {↵
|
10 | this.id = id;↵ | | 9 | this.↵
|
11 | }↵ | | |
|
12 |
↵ | | 10 | location = location;↵
|
| | | 11 | }↵
|
13 | public String getName() {
↵ | | 12 | public String getLocation() {↵
|
14 | return name;↵ | | 13 | return ↵
|
15 | }↵ | | |
|
16 |
↵ | | 14 | location;↵
|
| | | 15 | }↵
|
17 | public void setName(String name) {
↵ | | 16 | public void setSpecies(String species) {↵
|
18 | this.name = name;↵ | | 17 | this.↵
|
19 | }↵ | | |
|
|
20 | public Object getData↵ | | 18 | species = species;↵
|
| | | 19 | }↵
|
21 | () {
↵ | | 20 | public String getSpecies() {↵
|
22 | return data;↵ | | 21 | return ↵
|
23 | }↵ | | |
|
24 |
↵ | | 22 | species;↵
|
| | | 23 | }↵
|
25 | public void setData(Object data) {
↵ | | 24 | public void setIdentity(String identity) {↵
|
26 | this.data = data | | 25 | this.identity = identity;↵
|
| | | 26 | }↵
|
| | | 27 | public String getIdentity() {↵
|
| | | 28 | return identity
|
See real code fragment |
|
See real code fragment |
Summary
Number of common nesting structure subtrees | 0 |
Number of refactorable cases | 0 |
Number of non-refactorable cases | 0 |
Time elapsed for finding largest common nesting structure subtrees (ms) | 0.0 |
Clones location | |
Number of node comparisons | 0 |