CloneSet964


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
15210.977class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
117319
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
215171
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultStatisticalCategoryDataset.java
Next
Last
Clone Instance
1
Line Count
17
Source Line
319
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Returns the value for an item.
 *
 * @param row  the row index.
 * @param column  the column index.
 *
 * @return The value.
 * 
 * @see #getMedianValue(int, int)
 * @see #getValue(Comparable, Comparable)
 */
public Number getValue(int row, int column) {
  return getMedianValue(row, column);
}

/**
 * Returns the value for an item.
 *
 * @param rowKey  the row key.
 * @param columnKey  the columnKey.
 *
 * @return The value.
 * 
 * @see #getMedianValue(Comparable, Comparable)
 * @see #getValue(int, int)
 */
public Number getValue(Comparable rowKey, Comparable columnKey) {
  return getMedianValue(rowKey, columnKey);
}


First
Previous
Clone Instance
2
Line Count
15
Source Line
171
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultStatisticalCategoryDataset.java

/**
 * Returns the value for an item (for this dataset, the mean value is
 * returned).
 *
 * @param row  the row index.
 * @param column  the column index.
 *
 * @return The value (possibly <code>null</code>).
 */
public Number getValue(int row, int column) {
  return getMeanValue(row, column);
}

/**
 * Returns the value for an item (for this dataset, the mean value is
 * returned).
 *
 * @param rowKey  the row key.
 * @param columnKey  the columnKey.
 *
 * @return The value (possibly <code>null</code>).
 */
public Number getValue(Comparable rowKey, Comparable columnKey) {
  return getMeanValue(rowKey, columnKey);
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns the value for an item (for this dataset, the mean value is
     * returned).
     *
     * @param row  the row index.
     * @param column  the column index.
     *
     * @return The value (possibly <code>null</code>).
     */
/**
     * Returns the value for an item.
     *
     * @param row  the row index.
     * @param column  the column index.
     *
     * @return The value.
     * 
     * @see #getMedianValue(int, int)
     * @see #getValue(Comparable, Comparable)
     */
public Number getValue(int row, int column) {
  return [[#variable18e17de0]](row, column);
}

/**
     * Returns the value for an item (for this dataset, the mean value is
     * returned).
     *
     * @param rowKey  the row key.
     * @param columnKey  the columnKey.
     *
     * @return The value (possibly <code>null</code>).
     */
/**
     * Returns the value for an item.
     *
     * @param rowKey  the row key.
     * @param columnKey  the columnKey.
     *
     * @return The value.
     * 
     * @see #getMedianValue(Comparable, Comparable)
     * @see #getValue(int, int)
     */
public Number getValue(Comparable rowKey, Comparable columnKey) {
  return [[#variable18e17de0]](rowKey, columnKey);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18e17de0]]
getMedianValue 
12[[#18e17de0]]
getMeanValue