CloneSet260


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
11820.966interface_member_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11176
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerXYDataset.java
21196
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerXYDataset.java
311116
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerXYDataset.java
412135
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerXYDataset.java
51158
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYZDataset.java
61178
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYZDataset.java
71198
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYZDataset.java
81561
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/WindDataset.java
Next
Last
Clone Instance
1
Line Count
11
Source Line
76
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerXYDataset.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);


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

/**
 * 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);


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

/**
 * 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);


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

/**
 * 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);


Next
Previous
Clone Instance
5
Line Count
11
Source Line
58
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYZDataset.java

/**
 * 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);


Next
Previous
Clone Instance
6
Line Count
11
Source Line
78
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYZDataset.java

/**
 * 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);


Next
Previous
Clone Instance
7
Line Count
11
Source Line
98
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/IntervalXYZDataset.java

/**
 * 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);


First
Previous
Clone Instance
8
Line Count
15
Source Line
61
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/WindDataset.java

/**
 * 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);


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a882d60]]
getMeanValue 
12[[#1a882d60]]
getQ1Value 
13[[#1a882d60]]
getMinRegularValue 
14[[#1a882d60]]
getMinOutlier 
15[[#1a882d60]]
getStartXValue 
16[[#1a882d60]]
getStartYValue 
17[[#1a882d60]]
getStartZValue 
18[[#1a882d60]]
getWindDirection 
21[[#1a87c3a0]]
getMedianValue 
22[[#1a87c3a0]]
getQ3Value 
23[[#1a87c3a0]]
getMaxRegularValue 
24[[#1a87c3a0]]
getMaxOutlier 
25[[#1a87c3a0]]
getEndXValue 
26[[#1a87c3a0]]
getEndYValue 
27[[#1a87c3a0]]
getEndZValue 
28[[#1a87c3a0]]
getWindForce