CloneSet941


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4220.977method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14404
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/HistogramDataset.java
24422
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/HistogramDataset.java
Next
Last
Clone Instance
1
Line Count
4
Source Line
404
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/HistogramDataset.java

/**
 * Returns the start value for a bin.
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (zero based).
 *
 * @return The start value.
 *
 * @throws IndexOutOfBoundsException if <code>series</code> is outside the
 *     specified range.
 */
public Number getStartX(int series, int item) {
  List bins = getBins(series);
  HistogramBin bin = (HistogramBin) bins.get(item);
  return new Double(bin.getStartBoundary());
}


First
Previous
Clone Instance
2
Line Count
4
Source Line
422
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/HistogramDataset.java

/**
 * Returns the end value for a bin.
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (zero based).
 *
 * @return The end value.
 *
 * @throws IndexOutOfBoundsException if <code>series</code> is outside the
 *     specified range.
 */
public Number getEndX(int series, int item) {
  List bins = getBins(series);
  HistogramBin bin = (HistogramBin) bins.get(item);
  return new Double(bin.getEndBoundary());
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Returns the end value for a bin.
     *
     * @param series  the series index (in the range <code>0</code> to
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (zero based).
     *
     * @return The end value.
     *
     * @throws IndexOutOfBoundsException if <code>series</code> is outside the
     *     specified range.
     */
/**
     * Returns the start value for a bin.
     *
     * @param series  the series index (in the range <code>0</code> to
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (zero based).
     *
     * @return The start value.
     *
     * @throws IndexOutOfBoundsException if <code>series</code> is outside the
     *     specified range.
     */
public Number  [[#variable18dee720]](int series, int item) {
  List bins = getBins(series);
  HistogramBin bin = (HistogramBin) bins.get(item);
  return new Double(bin. [[#variable18dee6c0]]());
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18dee720]]
getStartX 
12[[#18dee720]]
getEndX 
21[[#18dee6c0]]
getStartBoundary 
22[[#18dee6c0]]
getEndBoundary