Previous CloneSet | Next CloneSet | Back to Main Report |
Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
---|---|---|---|---|
11 | 8 | 2 | 0.966 | interface_member_declarations[2] |
Clone Abstraction | Parameter Bindings |
Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
---|---|---|---|
1 | 11 | 76 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerXYDataset.java |
2 | 11 | 96 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerXYDataset.java |
3 | 11 | 116 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerXYDataset.java |
4 | 12 | 135 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerXYDataset.java |
5 | 11 | 58 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYZDataset.java |
6 | 11 | 78 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYZDataset.java |
7 | 11 | 98 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYZDataset.java |
8 | 15 | 61 | E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/WindDataset.java |
| |||||
/** * Returns the mean for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The mean for the specified series and item. */ public Number getMeanValue(int series, int item); /** * Returns the median-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The median-value for the specified series and item. */ public Number getMedianValue(int series, int item); |
| |||||
/** * Returns the Q1 median-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The Q1 median-value for the specified series and item. */ public Number getQ1Value(int series, int item); /** * Returns the Q3 median-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The Q3 median-value for the specified series and item. */ public Number getQ3Value(int series, int item); |
| |||||
/** * Returns the min-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The min-value for the specified series and item. */ public Number getMinRegularValue(int series, int item); /** * Returns the max-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The max-value for the specified series and item. */ public Number getMaxRegularValue(int series, int item); |
| |||||
/** * Returns the minimum value which is not a farout. * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return A <code>Number</code> representing the maximum non-farout value. */ public Number getMinOutlier(int series, int item); /** * Returns the maximum value which is not a farout, ie Q3 + (interquartile * range * farout coefficient). * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return A <code>Number</code> representing the maximum non-farout value. */ public Number getMaxOutlier(int series, int item); |
| |||||
/** * Returns the starting X value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The starting X value for the specified series and item. */ public Number getStartXValue(int series, int item); /** * Returns the ending X value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The ending X value for the specified series and item. */ public Number getEndXValue(int series, int item); |
| |||||
/** * Returns the starting Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The starting Y value for the specified series and item. */ public Number getStartYValue(int series, int item); /** * Returns the ending Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The ending Y value for the specified series and item. */ public Number getEndYValue(int series, int item); |
| |||||
/** * Returns the starting Z value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The starting Z value for the specified series and item. */ public Number getStartZValue(int series, int item); /** * Returns the ending Z value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The ending Z value for the specified series and item. */ public Number getEndZValue(int series, int item); |
| |||||
/** * Returns the wind direction (should be in the range 0 to 12, * corresponding to the positions on an upside-down clock face). * * @param series the series (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item (in the range <code>0</code> to * <code>getItemCount(series) - 1</code>). * * @return The wind direction. */ public Number getWindDirection(int series, int item); /** * Returns the wind force on the Beaufort scale (0 to 12). See: * <p> * http://en.wikipedia.org/wiki/Beaufort_scale * * @param series the series (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item (in the range <code>0</code> to * <code>getItemCount(series) - 1</code>). * * @return The wind force. */ public Number getWindForce(int series, int item); |
| |||
/** * Returns the mean for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The mean for the specified series and item. */ /** * Returns the Q1 median-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The Q1 median-value for the specified series and item. */ /** * Returns the starting X value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The starting X value for the specified series and item. */ /** * Returns the min-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The min-value for the specified series and item. */ /** * Returns the starting Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The starting Y value for the specified series and item. */ /** * Returns the minimum value which is not a farout. * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return A <code>Number</code> representing the maximum non-farout value. */ /** * Returns the wind direction (should be in the range 0 to 12, * corresponding to the positions on an upside-down clock face). * * @param series the series (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item (in the range <code>0</code> to * <code>getItemCount(series) - 1</code>). * * @return The wind direction. */ /** * Returns the starting Z value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The starting Z value for the specified series and item. */ public Number [[#variable1a882d60]](int series, int item); /** * Returns the median-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The median-value for the specified series and item. */ /** * Returns the Q3 median-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The Q3 median-value for the specified series and item. */ /** * Returns the ending X value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The ending X value for the specified series and item. */ /** * Returns the max-value for the specified series and item. * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return The max-value for the specified series and item. */ /** * Returns the ending Y value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The ending Y value for the specified series and item. */ /** * Returns the maximum value which is not a farout, ie Q3 + (interquartile * range * farout coefficient). * * @param series the series (zero-based index). * @param item the item (zero-based index). * * @return A <code>Number</code> representing the maximum non-farout value. */ /** * Returns the wind force on the Beaufort scale (0 to 12). See: * <p> * http://en.wikipedia.org/wiki/Beaufort_scale * * @param series the series (in the range <code>0</code> to * <code>getSeriesCount() - 1</code>). * @param item the item (in the range <code>0</code> to * <code>getItemCount(series) - 1</code>). * * @return The wind force. */ /** * Returns the ending Z value for the specified series and item. * * @param series the series (zero-based index). * @param item the item within a series (zero-based index). * * @return The ending Z value for the specified series and item. */ public Number [[#variable1a87c3a0]](int series, int item); |
CloneAbstraction |
Parameter Index | Clone Instance | Parameter Name | Value |
---|---|---|---|
1 | 1 | [[#1a882d60]] | getMeanValue |
1 | 2 | [[#1a882d60]] | getQ1Value |
1 | 3 | [[#1a882d60]] | getMinRegularValue |
1 | 4 | [[#1a882d60]] | getMinOutlier |
1 | 5 | [[#1a882d60]] | getStartXValue |
1 | 6 | [[#1a882d60]] | getStartYValue |
1 | 7 | [[#1a882d60]] | getStartZValue |
1 | 8 | [[#1a882d60]] | getWindDirection |
2 | 1 | [[#1a87c3a0]] | getMedianValue |
2 | 2 | [[#1a87c3a0]] | getQ3Value |
2 | 3 | [[#1a87c3a0]] | getMaxRegularValue |
2 | 4 | [[#1a87c3a0]] | getMaxOutlier |
2 | 5 | [[#1a87c3a0]] | getEndXValue |
2 | 6 | [[#1a87c3a0]] | getEndYValue |
2 | 7 | [[#1a87c3a0]] | getEndZValue |
2 | 8 | [[#1a87c3a0]] | getWindForce |