CloneSet1257


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

/**
 * Returns the start x-value (as a double primitive) for an item within a 
 * series.
 * 
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 * 
 * @return The start x-value.
 */
public double getStartXValue(int series, int item) {
  SimpleHistogramBin bin = (SimpleHistogramBin) this.bins.get(item);
  return bin.getLowerBound();
}


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

/**
 * Returns the end x-value (as a double primitive) for an item within a 
 * series.
 * 
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 * 
 * @return The end x-value.
 */
public double getEndXValue(int series, int item) {
  SimpleHistogramBin bin = (SimpleHistogramBin) this.bins.get(item);
  return bin.getUpperBound();
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Returns the end x-value (as a double primitive) for an item within a 
     * series.
     * 
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     * 
     * @return The end x-value.
     */
/**
     * Returns the start x-value (as a double primitive) for an item within a 
     * series.
     * 
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     * 
     * @return The start x-value.
     */
public double  [[#variable18f09660]](int series, int item) {
  SimpleHistogramBin bin = (SimpleHistogramBin) this.bins.get(item);
  return bin. [[#variable18f095c0]]();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18f09660]]
getStartXValue 
12[[#18f09660]]
getEndXValue 
21[[#18f095c0]]
getLowerBound 
22[[#18f095c0]]
getUpperBound