CloneSet1626


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11210.950class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
111101
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/DefaultKeyedValue.java
211100
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xml/ItemHandler.java
Next
Last
Clone Instance
1
Line Count
11
Source Line
101
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/DefaultKeyedValue.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;
}


First
Previous
Clone Instance
2
Line Count
11
Source Line
100
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xml/ItemHandler.java

/**
 * 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;
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18ffde20]]
/**
 * Sets the value.
 *
 * @param value  the value (<code>null</code> permitted).
 */
public synchronized 
12[[#18ffde20]]
/**
 * Sets the value.
 *
 * @param value  the value.
 */
public