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/select/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↵ | | 4 | ParentAssigned owner;↵
|
|
5 | () {↵ | | 5 | public OtherAssigned() {
↵
|
6 | }↵ | | 6 | }↵
|
|
| | | 7 |
↵
|
7 | public MyEntity(String name) {↵ | | 8 | public OtherAssigned(Long id) {
↵
|
8 | this.name = name;↵ | | 9 | this.↵
|
9 | }↵ | | |
|
| | | 10 | id = id;↵
|
| | | 11 | }↵
|
| | | 12 |
↵
|
10 | public Long getId() {↵ | | 13 | public Long getId() {
↵
|
11 | return id;↵ | | 14 | return id;
↵
|
12 | }↵ | | 15 | }↵
|
|
| | | 16 |
↵
|
13 | public String getName() {↵ | | 17 | public ParentAssigned getOwner() {
↵
|
14 | return name;↵ | | 18 | return ↵
|
15 | }↵ | | |
|
| | | 19 | owner;↵
|
| | | 20 | }↵
|
| | | 21 |
↵
|
16 | public void setName(String name) {↵ | | 22 | public void setOwner(ParentAssigned owner) {
↵
|
17 | this.name = name | | 23 | this.owner = owner
|
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 |