CloneSet649


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
18210.967class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
118220
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/category/DefaultCategoryDataset.java
219250
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/category/DefaultCategoryDataset.java
Next
Last
Clone Instance
1
Line Count
18
Source Line
220
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/category/DefaultCategoryDataset.java

/**
 * Adds a value to the table.  Performs the same function as setValue().
 *
 * @param value  the value.
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 *
 * @see #getValue(Comparable, Comparable)
 * @see #removeValue(Comparable, Comparable)
 */
public void addValue(Number value, Comparable rowKey, Comparable columnKey) {
  this.data.addValue(value, rowKey, columnKey);
  fireDatasetChanged();
}

/**
 * Adds a value to the table.
 *
 * @param value  the value.
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 *
 * @see #getValue(Comparable, Comparable)
 */
public void addValue(double value, Comparable rowKey, Comparable columnKey) {
  addValue(new Double(value), rowKey, columnKey);
}


First
Previous
Clone Instance
2
Line Count
19
Source Line
250
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/category/DefaultCategoryDataset.java

/**
 * Adds or updates a value in the table and sends a
 * {@link DatasetChangeEvent} to all registered listeners.
 *
 * @param value  the value (<code>null</code> permitted).
 * @param rowKey  the row key (<code>null</code> not permitted).
 * @param columnKey  the column key (<code>null</code> not permitted).
 *
 * @see #getValue(Comparable, Comparable)
 */
public void setValue(Number value, Comparable rowKey, Comparable columnKey) {
  this.data.setValue(value, rowKey, columnKey);
  fireDatasetChanged();
}

/**
 * Adds or updates a value in the table and sends a
 * {@link DatasetChangeEvent} to all registered listeners.
 *
 * @param value  the value.
 * @param rowKey  the row key (<code>null</code> not permitted).
 * @param columnKey  the column key (<code>null</code> not permitted).
 *
 * @see #getValue(Comparable, Comparable)
 */
public void setValue(double value, Comparable rowKey, Comparable columnKey) {
  setValue(new Double(value), rowKey, columnKey);
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Adds a value to the table.  Performs the same function as setValue().
     *
     * @param value  the value.
     * @param rowKey  the row key.
     * @param columnKey  the column key.
     *
     * @see #getValue(Comparable, Comparable)
     * @see #removeValue(Comparable, Comparable)
     */
/**
     * Adds or updates a value in the table and sends a
     * {@link DatasetChangeEvent} to all registered listeners.
     *
     * @param value  the value (<code>null</code> permitted).
     * @param rowKey  the row key (<code>null</code> not permitted).
     * @param columnKey  the column key (<code>null</code> not permitted).
     *
     * @see #getValue(Comparable, Comparable)
     */
public void [[#variable18cbf440]](Number value, Comparable rowKey, Comparable columnKey) {
  this.data. [[#variable18cbf440]](value, rowKey, columnKey);
  fireDatasetChanged();
}

/**
     * Adds a value to the table.
     *
     * @param value  the value.
     * @param rowKey  the row key.
     * @param columnKey  the column key.
     *
     * @see #getValue(Comparable, Comparable)
     */
/**
     * Adds or updates a value in the table and sends a
     * {@link DatasetChangeEvent} to all registered listeners.
     *
     * @param value  the value.
     * @param rowKey  the row key (<code>null</code> not permitted).
     * @param columnKey  the column key (<code>null</code> not permitted).
     *
     * @see #getValue(Comparable, Comparable)
     */
public void [[#variable18cbf440]](double value, Comparable rowKey, Comparable columnKey) {
   [[#variable18cbf440]](new Double(value), rowKey, columnKey);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18cbf440]]
addValue 
12[[#18cbf440]]
setValue