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 static final class Component {
private Calendar cal;
private Float floaty;
/**
* Returns the cal.
* @return Calendar
*/
public Calendar getCal() {
return cal;
}
/**
* Sets the cal.
* @param cal The cal to set
*/
public void setCal(Calendar cal) {
this.cal = cal;
}
/**
* Returns the floaty.
* @return Float
*/
public Float getFloaty() {
return floaty;
}
/**
* Sets the floaty.
* @param floaty The floaty to set
*/
public void setFloaty(Float floaty) {
this.floaty = floaty;
Clone fragments detected by clone detection tool
File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/generatedkeys/seqidentity/MyEntity.java
|
|
File path: /hibernate-distribution-3.3.2.GA/project/testsuite/src/test/java/org/hibernate/test/legacy/Multi.java
|
Method name:
|
|
Method name:
|
Number of AST nodes: 0
|
|
Number of AST nodes: 0
|
|
1 | public class MyEntity {↵ | | 1 | public ↵
|
2 | private Long id;↵ | | |
|
3 | private String name;↵ | | |
|
4 |
↵ | | 2 | static final class Component {↵
|
| | | 3 | private Calendar cal;↵
|
| | | 4 | private Float floaty;↵
|
| | | 5 | /**↵
|
| | | 6 | * Returns the cal.↵
|
| | | 7 | * @return Calendar↵
|
| | | 8 | */↵
|
5 | public MyEntity() {↵ | | 9 | public ↵
|
6 | }↵ | | |
|
|
7 | public MyEntity(String name↵ | | 10 | Calendar getCal() {↵
|
| | | 11 | return cal;↵
|
| | | 12 | }↵
|
| | | 13 | ↵
|
| | | 14 | /**↵
|
| | | 15 | * Sets the cal.↵
|
| | | 16 | * @param cal The cal to set↵
|
| | | 17 | */↵
|
8 | ) {
↵ | | 18 | public void setCal(Calendar cal) {↵
|
9 | this.name = name;↵ | | 19 | this.↵
|
10 | }↵ | | |
|
|
11 | public Long getId() {↵ | | |
|
12 | return id;↵ | | |
|
13 | }↵ | | |
|
|
| | | 20 | cal = cal;↵
|
| | | 21 | }↵
|
| | | 22 | ↵
|
| | | 23 | /**↵
|
| | | 24 | * Returns the floaty.↵
|
| | | 25 | * @return Float↵
|
| | | 26 | */↵
|
14 | public String getName() {
↵ | | 27 | public Float getFloaty() {↵
|
15 | return name;↵ | | 28 | return ↵
|
16 | }↵ | | |
|
|
17 | public void setName(String name↵ | | 29 | floaty;↵
|
| | | 30 | }↵
|
| | | 31 | ↵
|
| | | 32 | /**↵
|
| | | 33 | * Sets the floaty.↵
|
| | | 34 | * @param floaty The floaty to set↵
|
| | | 35 | */↵
|
18 | ) {
↵ | | 36 | public void setFloaty(Float floaty) {↵
|
19 | this.name = name;
↵ | | 37 | this.floaty = floaty;↵
|
20 | | | 38 |
|
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 |