Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
11 | 11 | 1 | 0.968 | interface_member_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 13 | 63 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/gantt/GanttCategoryDataset.java |
2 | 11 | 66 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java |
3 | 11 | 86 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java |
4 | 11 | 106 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java |
5 | 11 | 126 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java |
6 | 11 | 146 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java |
7 | 11 | 166 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java |
8 | 11 | 186 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java |
9 | 11 | 206 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java |
10 | 11 | 64 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/StatisticalCategoryDataset.java |
11 | 11 | 84 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/StatisticalCategoryDataset.java |
| |||||
/** * Returns the percent complete for a given item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The percent complete. * * @see #getPercentComplete(Comparable, Comparable) */ public Number getPercentComplete(int row, int column); /** * Returns the percent complete for a given item. * * @param rowKey the row key. * @param columnKey the column key. * * @return The percent complete. * * @see #getPercentComplete(int, int) */ public Number getPercentComplete(Comparable rowKey, Comparable columnKey); |
| |||||
/** * 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. */ public Number getMeanValue(int row, int column); /** * Returns the average value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The average value. */ public Number getMeanValue(Comparable rowKey, Comparable columnKey); |
| |||||
/** * 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. */ public Number getMedianValue(int row, int column); /** * Returns the median value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The median value. */ public Number getMedianValue(Comparable rowKey, Comparable columnKey); |
| |||||
/** * Returns the q1median value for an item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The q1median value. */ public Number getQ1Value(int row, int column); /** * Returns the q1median value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The q1median value. */ public Number getQ1Value(Comparable rowKey, Comparable columnKey); |
| |||||
/** * Returns the q3median value for an item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The q3median value. */ public Number getQ3Value(int row, int column); /** * Returns the q3median value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The q3median value. */ public Number getQ3Value(Comparable rowKey, Comparable columnKey); |
| |||||
/** * 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. */ public Number getMinRegularValue(int row, int column); /** * Returns the minimum regular (non-outlier) value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The minimum regular value. */ public Number getMinRegularValue(Comparable rowKey, Comparable columnKey); |
| |||||
/** * 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. */ public Number getMaxRegularValue(int row, int column); /** * Returns the maximum regular (non-outlier) value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The maximum regular value. */ public Number getMaxRegularValue(Comparable rowKey, Comparable columnKey); |
| |||||
/** * Returns the minimum outlier (non-farout) for an item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The minimum outlier. */ public Number getMinOutlier(int row, int column); /** * Returns the minimum outlier (non-farout) for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The minimum outlier. */ public Number getMinOutlier(Comparable rowKey, Comparable columnKey); |
| |||||
/** * Returns the maximum outlier (non-farout) for an item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The maximum outlier. */ public Number getMaxOutlier(int row, int column); /** * Returns the maximum outlier (non-farout) for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The maximum outlier. */ public Number getMaxOutlier(Comparable rowKey, Comparable columnKey); |
| |||||
/** * 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. */ public Number getMeanValue(int row, int column); /** * Returns the mean value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The mean value. */ public Number getMeanValue(Comparable rowKey, Comparable columnKey); |
| |||||
/** * Returns the standard deviation value for an item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The standard deviation. */ public Number getStdDevValue(int row, int column); /** * Returns the standard deviation value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The standard deviation. */ public Number getStdDevValue(Comparable rowKey, Comparable columnKey); |
| |||
/** * 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. */ /** * 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. */ /** * Returns the q1median value for an item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The q1median value. */ /** * Returns the q3median value for an item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The q3median value. */ /** * Returns the percent complete for a given item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The percent complete. * * @see #getPercentComplete(Comparable, Comparable) */ /** * 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. */ /** * 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. */ /** * Returns the minimum outlier (non-farout) for an item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The minimum outlier. */ /** * Returns the maximum outlier (non-farout) for an item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The maximum outlier. */ /** * Returns the standard deviation value for an item. * * @param row the row index (zero-based). * @param column the column index (zero-based). * * @return The standard deviation. */ public Number [[#variable1aa93660]](int row, int column); /** * Returns the average value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The average value. */ /** * Returns the median value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The median value. */ /** * Returns the q1median value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The q1median value. */ /** * Returns the q3median value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The q3median value. */ /** * Returns the percent complete for a given item. * * @param rowKey the row key. * @param columnKey the column key. * * @return The percent complete. * * @see #getPercentComplete(int, int) */ /** * Returns the minimum regular (non-outlier) value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The minimum regular value. */ /** * Returns the maximum regular (non-outlier) value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The maximum regular value. */ /** * Returns the minimum outlier (non-farout) for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The minimum outlier. */ /** * Returns the maximum outlier (non-farout) for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The maximum outlier. */ /** * Returns the standard deviation value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The standard deviation. */ /** * Returns the mean value for an item. * * @param rowKey the row key. * @param columnKey the columnKey. * * @return The mean value. */ public Number [[#variable1aa93660]](Comparable rowKey, Comparable columnKey); |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1aa93660]] | getPercentComplete |
1 | 2 | [[#1aa93660]] | getMeanValue |
1 | 3 | [[#1aa93660]] | getMedianValue |
1 | 4 | [[#1aa93660]] | getQ1Value |
1 | 5 | [[#1aa93660]] | getQ3Value |
1 | 6 | [[#1aa93660]] | getMinRegularValue |
1 | 7 | [[#1aa93660]] | getMaxRegularValue |
1 | 8 | [[#1aa93660]] | getMinOutlier |
1 | 9 | [[#1aa93660]] | getMaxOutlier |
1 | 10 | [[#1aa93660]] | getMeanValue |
1 | 11 | [[#1aa93660]] | getStdDevValue |