CloneSet153


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
111110.968interface_member_declarations[2]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
11363
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/gantt/GanttCategoryDataset.java
21166
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java
31186
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java
411106
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java
511126
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java
611146
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java
711166
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java
811186
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java
911206
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.java
101164
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/StatisticalCategoryDataset.java
111184
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/StatisticalCategoryDataset.java
Next
Last
Clone Instance
1
Line Count
13
Source Line
63
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/gantt/GanttCategoryDataset.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);


Next
Previous
Clone Instance
2
Line Count
11
Source Line
66
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.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.
 */
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);


Next
Previous
Clone Instance
3
Line Count
11
Source Line
86
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.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.
 */
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);


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

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


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

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


Next
Previous
Clone Instance
6
Line Count
11
Source Line
146
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.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.
 */
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);


Next
Previous
Clone Instance
7
Line Count
11
Source Line
166
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/BoxAndWhiskerCategoryDataset.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.
 */
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);


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

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


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

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


Next
Previous
Clone Instance
10
Line Count
11
Source Line
64
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/StatisticalCategoryDataset.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.
 */
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);


First
Previous
Clone Instance
11
Line Count
11
Source Line
84
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/StatisticalCategoryDataset.java

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


Clone AbstractionParameter Count: 1Parameter 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.
     */
/**
     * 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 Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1aa93660]]
getPercentComplete 
12[[#1aa93660]]
getMeanValue 
13[[#1aa93660]]
getMedianValue 
14[[#1aa93660]]
getQ1Value 
15[[#1aa93660]]
getQ3Value 
16[[#1aa93660]]
getMinRegularValue 
17[[#1aa93660]]
getMaxRegularValue 
18[[#1aa93660]]
getMinOutlier 
19[[#1aa93660]]
getMaxOutlier 
110[[#1aa93660]]
getMeanValue 
111[[#1aa93660]]
getStdDevValue