CloneSet28


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
30930.960class_body_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
130348
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
228390
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
328430
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
428470
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
528647
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
628687
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
728727
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
828767
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
928807
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java
Next
Last
Clone Instance
1
Line Count
30
Source Line
348
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Returns the mean value for an item.
 * 
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 * 
 * @return The mean value.
 * 
 * @see #getItem(int, int)
 */
public Number getMeanValue(int row, int column) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(row, column);
  if (item != null) {
    result = item.getMean();
  }
  return result;
}

/**
 * Returns the mean value for an item.
 * 
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * 
 * @return The mean value.
 * 
 * @see #getItem(int, int)
 */
public Number getMeanValue(Comparable rowKey, Comparable columnKey) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(rowKey, columnKey);
  if (item != null) {
    result = item.getMean();
  }
  return result;
}


Next
Previous
Clone Instance
2
Line Count
28
Source Line
390
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Returns the median value for an item.
 *
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 *
 * @return The median value.
 * 
 * @see #getItem(int, int)
 */
public Number getMedianValue(int row, int column) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(row, column);
  if (item != null) {
    result = item.getMedian();
  }
  return result;
}

/**
 * Returns the median value for an item.
 *
 * @param rowKey  the row key.
 * @param columnKey  the columnKey.
 *
 * @return The median value.
 * 
 * @see #getItem(int, int)
 */
public Number getMedianValue(Comparable rowKey, Comparable columnKey) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(rowKey, columnKey);
  if (item != null) {
    result = item.getMedian();
  }
  return result;
}


Next
Previous
Clone Instance
3
Line Count
28
Source Line
430
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Returns the first quartile value.
 * 
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 * 
 * @return The first quartile value.
 * 
 * @see #getItem(int, int)
 */
public Number getQ1Value(int row, int column) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(row, column);
  if (item != null) {
    result = item.getQ1();
  }
  return result;
}

/**
 * Returns the first quartile value.
 * 
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * 
 * @return The first quartile value.
 * 
 * @see #getItem(int, int)
 */
public Number getQ1Value(Comparable rowKey, Comparable columnKey) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(rowKey, columnKey);
  if (item != null) {
    result = item.getQ1();
  }
  return result;
}


Next
Previous
Clone Instance
4
Line Count
28
Source Line
470
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Returns the third quartile value.
 * 
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 * 
 * @return The third quartile value.
 * 
 * @see #getItem(int, int)
 */
public Number getQ3Value(int row, int column) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(row, column);
  if (item != null) {
    result = item.getQ3();
  }
  return result;
}

/**
 * Returns the third quartile value.
 * 
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * 
 * @return The third quartile value.
 * 
 * @see #getItem(int, int)
 */
public Number getQ3Value(Comparable rowKey, Comparable columnKey) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(rowKey, columnKey);
  if (item != null) {
    result = item.getQ3();
  }
  return result;
}


Next
Previous
Clone Instance
5
Line Count
28
Source Line
647
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Returns the minimum regular (non outlier) value for an item.
 * 
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 * 
 * @return The minimum regular value.
 * 
 * @see #getItem(int, int)
 */
public Number getMinRegularValue(int row, int column) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(row, column);
  if (item != null) {
    result = item.getMinRegularValue();
  }
  return result;
}

/**
 * Returns the minimum regular (non outlier) value for an item.
 * 
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * 
 * @return The minimum regular value.
 * 
 * @see #getItem(int, int)
 */
public Number getMinRegularValue(Comparable rowKey, Comparable columnKey) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(rowKey, columnKey);
  if (item != null) {
    result = item.getMinRegularValue();
  }
  return result;
}


Next
Previous
Clone Instance
6
Line Count
28
Source Line
687
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Returns the maximum regular (non outlier) value for an item.
 * 
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 * 
 * @return The maximum regular value.
 * 
 * @see #getItem(int, int)
 */
public Number getMaxRegularValue(int row, int column) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(row, column);
  if (item != null) {
    result = item.getMaxRegularValue();
  }
  return result;
}

/**
 * Returns the maximum regular (non outlier) value for an item.
 * 
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * 
 * @return The maximum regular value.
 * 
 * @see #getItem(int, int)
 */
public Number getMaxRegularValue(Comparable rowKey, Comparable columnKey) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(rowKey, columnKey);
  if (item != null) {
    result = item.getMaxRegularValue();
  }
  return result;
}


Next
Previous
Clone Instance
7
Line Count
28
Source Line
727
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Returns the minimum outlier (non farout) value for an item.
 * 
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 * 
 * @return The minimum outlier.
 * 
 * @see #getItem(int, int)
 */
public Number getMinOutlier(int row, int column) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(row, column);
  if (item != null) {
    result = item.getMinOutlier();
  }
  return result;
}

/**
 * Returns the minimum outlier (non farout) value for an item.
 * 
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * 
 * @return The minimum outlier.
 * 
 * @see #getItem(int, int)
 */
public Number getMinOutlier(Comparable rowKey, Comparable columnKey) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(rowKey, columnKey);
  if (item != null) {
    result = item.getMinOutlier();
  }
  return result;
}


Next
Previous
Clone Instance
8
Line Count
28
Source Line
767
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Returns the maximum outlier (non farout) value for an item.
 * 
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 * 
 * @return The maximum outlier.
 * 
 * @see #getItem(int, int)
 */
public Number getMaxOutlier(int row, int column) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(row, column);
  if (item != null) {
    result = item.getMaxOutlier();
  }
  return result;
}

/**
 * Returns the maximum outlier (non farout) value for an item.
 * 
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * 
 * @return The maximum outlier.
 * 
 * @see #getItem(int, int)
 */
public Number getMaxOutlier(Comparable rowKey, Comparable columnKey) {
  Number result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(rowKey, columnKey);
  if (item != null) {
    result = item.getMaxOutlier();
  }
  return result;
}


First
Previous
Clone Instance
9
Line Count
28
Source Line
807
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerCategoryDataset.java

/**
 * Returns a list of outlier values for an item.
 * 
 * @param row  the row index (zero-based).
 * @param column  the column index (zero-based).
 * 
 * @return A list of outlier values.
 * 
 * @see #getItem(int, int)
 */
public List getOutliers(int row, int column) {
  List result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(row, column);
  if (item != null) {
    result = item.getOutliers();
  }
  return result;
}

/**
 * Returns a list of outlier values for an item.
 * 
 * @param rowKey  the row key.
 * @param columnKey  the column key.
 * 
 * @return A list of outlier values.
 * 
 * @see #getItem(int, int)
 */
public List getOutliers(Comparable rowKey, Comparable columnKey) {
  List result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(rowKey, columnKey);
  if (item != null) {
    result = item.getOutliers();
  }
  return result;
}


Clone AbstractionParameter Count: 3Parameter Bindings

/**
     * Returns the mean value for an item.
     * 
     * @param row  the row index (zero-based).
     * @param column  the column index (zero-based).
     * 
     * @return The mean value.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the median value for an item.
     *
     * @param row  the row index (zero-based).
     * @param column  the column index (zero-based).
     *
     * @return The median value.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the first quartile value.
     * 
     * @param row  the row index (zero-based).
     * @param column  the column index (zero-based).
     * 
     * @return The first quartile value.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the third quartile value.
     * 
     * @param row  the row index (zero-based).
     * @param column  the column index (zero-based).
     * 
     * @return The third quartile value.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the minimum regular (non outlier) value for an item.
     * 
     * @param row  the row index (zero-based).
     * @param column  the column index (zero-based).
     * 
     * @return The minimum regular value.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the maximum regular (non outlier) value for an item.
     * 
     * @param row  the row index (zero-based).
     * @param column  the column index (zero-based).
     * 
     * @return The maximum regular value.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the minimum outlier (non farout) value for an item.
     * 
     * @param row  the row index (zero-based).
     * @param column  the column index (zero-based).
     * 
     * @return The minimum outlier.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the maximum outlier (non farout) value for an item.
     * 
     * @param row  the row index (zero-based).
     * @param column  the column index (zero-based).
     * 
     * @return The maximum outlier.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns a list of outlier values for an item.
     * 
     * @param row  the row index (zero-based).
     * @param column  the column index (zero-based).
     * 
     * @return A list of outlier values.
     * 
     * @see #getItem(int, int)
     */
public [[#variable150493e0]]  [[#variable15049340]](int row, int column) {
   [[#variable150493e0]] result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(row, column);
  if (item != null) {
    result = item. [[#variable150490e0]]();
  }
  return result;
}

/**
     * Returns the mean value for an item.
     * 
     * @param rowKey  the row key.
     * @param columnKey  the column key.
     * 
     * @return The mean value.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the median value for an item.
     *
     * @param rowKey  the row key.
     * @param columnKey  the columnKey.
     *
     * @return The median value.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the first quartile value.
     * 
     * @param rowKey  the row key.
     * @param columnKey  the column key.
     * 
     * @return The first quartile value.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the third quartile value.
     * 
     * @param rowKey  the row key.
     * @param columnKey  the column key.
     * 
     * @return The third quartile value.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the minimum regular (non outlier) value for an item.
     * 
     * @param rowKey  the row key.
     * @param columnKey  the column key.
     * 
     * @return The minimum regular value.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the maximum regular (non outlier) value for an item.
     * 
     * @param rowKey  the row key.
     * @param columnKey  the column key.
     * 
     * @return The maximum regular value.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the minimum outlier (non farout) value for an item.
     * 
     * @param rowKey  the row key.
     * @param columnKey  the column key.
     * 
     * @return The minimum outlier.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns the maximum outlier (non farout) value for an item.
     * 
     * @param rowKey  the row key.
     * @param columnKey  the column key.
     * 
     * @return The maximum outlier.
     * 
     * @see #getItem(int, int)
     */
/**
     * Returns a list of outlier values for an item.
     * 
     * @param rowKey  the row key.
     * @param columnKey  the column key.
     * 
     * @return A list of outlier values.
     * 
     * @see #getItem(int, int)
     */
public [[#variable150493e0]]  [[#variable15049340]](Comparable rowKey, Comparable columnKey) {
   [[#variable150493e0]] result = null;
  BoxAndWhiskerItem item = (BoxAndWhiskerItem) this.data.getObject(rowKey, columnKey);
  if (item != null) {
    result = item. [[#variable150490e0]]();
  }
  return result;
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#150493e0]]
Number 
12[[#150493e0]]
Number 
13[[#150493e0]]
Number 
14[[#150493e0]]
Number 
15[[#150493e0]]
Number 
16[[#150493e0]]
Number 
17[[#150493e0]]
Number 
18[[#150493e0]]
Number 
19[[#150493e0]]
List 
21[[#15049340]]
getMeanValue 
22[[#15049340]]
getMedianValue 
23[[#15049340]]
getQ1Value 
24[[#15049340]]
getQ3Value 
25[[#15049340]]
getMinRegularValue 
26[[#15049340]]
getMaxRegularValue 
27[[#15049340]]
getMinOutlier 
28[[#15049340]]
getMaxOutlier 
29[[#15049340]]
getOutliers 
31[[#150490e0]]
getMean 
32[[#150490e0]]
getMedian 
33[[#150490e0]]
getQ1 
34[[#150490e0]]
getQ3 
35[[#150490e0]]
getMinRegularValue 
36[[#150490e0]]
getMaxRegularValue 
37[[#150490e0]]
getMinOutlier 
38[[#150490e0]]
getMaxOutlier 
39[[#150490e0]]
getOutliers