CloneSet97


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
7930.958method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
17324
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java
27341
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java
37358
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java
47375
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java
57392
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java
67409
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java
77425
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java
87443
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java
97460
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.java
Next
Last
Clone Instance
1
Line Count
7
Source Line
324
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.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) {
  Number result = null;
  BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item);
  if (stats != null) {
    result = stats.getMean();
  }
  return result;
}


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

/**
 * 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) {
  Number result = null;
  BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item);
  if (stats != null) {
    result = stats.getMedian();
  }
  return result;
}


Next
Previous
Clone Instance
3
Line Count
7
Source Line
358
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.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) {
  Number result = null;
  BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item);
  if (stats != null) {
    result = stats.getQ1();
  }
  return result;
}


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

/**
 * 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) {
  Number result = null;
  BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item);
  if (stats != null) {
    result = stats.getQ3();
  }
  return result;
}


Next
Previous
Clone Instance
5
Line Count
7
Source Line
392
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.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) {
  Number result = null;
  BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item);
  if (stats != null) {
    result = stats.getMinRegularValue();
  }
  return result;
}


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

/**
 * 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) {
  Number result = null;
  BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item);
  if (stats != null) {
    result = stats.getMaxRegularValue();
  }
  return result;
}


Next
Previous
Clone Instance
7
Line Count
7
Source Line
425
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/DefaultBoxAndWhiskerXYDataset.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) {
  Number result = null;
  BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item);
  if (stats != null) {
    result = stats.getMinOutlier();
  }
  return result;
}


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

/**
 * 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) {
  Number result = null;
  BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item);
  if (stats != null) {
    result = stats.getMaxOutlier();
  }
  return result;
}


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

/**
 * Returns an array of outliers for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The array of outliers for the specified series and item.
 */
public List getOutliers(int series, int item) {
  List result = null;
  BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item);
  if (stats != null) {
    result = stats.getOutliers();
  }
  return result;
}


Clone AbstractionParameter Count: 3Parameter Bindings

/**
     * Returns an array of outliers for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The array of outliers 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 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 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 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 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 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 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 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 [[#variable1ab1f380]]  [[#variable1ab1f2c0]](int series, int item) {
   [[#variable1ab1f380]] result = null;
  BoxAndWhiskerItem stats = (BoxAndWhiskerItem) this.items.get(item);
  if (stats != null) {
    result = stats. [[#variable1ab1f240]]();
  }
  return result;
}
 

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