Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
11 | 2 | 1 | 0.950 | class_body_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 11 | 101 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/DefaultKeyedValue.java |
2 | 11 | 100 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xml/ItemHandler.java |
| |||||
/** * Returns the value. * * @return The value (possibly <code>null</code>). */ public Number getValue() { return this.value; } /** * Sets the value. * * @param value the value (<code>null</code> permitted). */ public synchronized void setValue(Number value) { this.value = value; } |
| |||||
/** * Returns the key that has been read by the handler, or <code>null</code>. * * @return The value. */ public Number getValue() { return this.value; } /** * Sets the value. * * @param value the value. */ public void setValue(Number value) { this.value = value; } |
| |||
/** * Returns the key that has been read by the handler, or <code>null</code>. * * @return The value. */ /** * Returns the value. * * @return The value (possibly <code>null</code>). */ public Number getValue() { return this.value; } [[#variable18ffde20]]void setValue(Number value) { this.value = value; } |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#18ffde20]] | /** * Sets the value. * * @param value the value (<code>null</code> permitted). */ public synchronized |
1 | 2 | [[#18ffde20]] | /** * Sets the value. * * @param value the value. */ public |