CloneSet297


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
31210.971class_body_declarations[3]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
131168
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XIntervalSeriesCollection.java
231169
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.java
Next
Last
Clone Instance
1
Line Count
31
Source Line
168
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XIntervalSeriesCollection.java

/**
 * Returns the start 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 value.
 */
public double getStartXValue(int series, int item) {
  XIntervalSeries s = (XIntervalSeries) this.data.get(series);
  return s.getXLowValue(item);
}

/**
 * Returns the end 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 value.
 */
public double getEndXValue(int series, int item) {
  XIntervalSeries s = (XIntervalSeries) this.data.get(series);
  return s.getXHighValue(item);
}

/**
 * Returns the y-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 value.
 */
public double getYValue(int series, int item) {
  XIntervalSeries s = (XIntervalSeries) this.data.get(series);
  return s.getYValue(item);
}


First
Previous
Clone Instance
2
Line Count
31
Source Line
169
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.java

/**
 * Returns the start 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 value.
 */
public double getStartXValue(int series, int item) {
  XYIntervalSeries s = (XYIntervalSeries) this.data.get(series);
  return s.getXLowValue(item);
}

/**
 * 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 value.
 */
public double getEndXValue(int series, int item) {
  XYIntervalSeries s = (XYIntervalSeries) this.data.get(series);
  return s.getXHighValue(item);
}

/**
 * Returns the y-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 value.
 */
public double getYValue(int series, int item) {
  XYIntervalSeries s = (XYIntervalSeries) this.data.get(series);
  return s.getYValue(item);
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns the start 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 value.
     */
public double getStartXValue(int series, int item) {
   [[#variable1a8de2c0]] s = ( [[#variable1a8de2c0]]) this.data.get(series);
  return s.getXLowValue(item);
}

/**
     * 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 value.
     */
/**
     * Returns the end 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 value.
     */
public double getEndXValue(int series, int item) {
   [[#variable1a8de2c0]] s = ( [[#variable1a8de2c0]]) this.data.get(series);
  return s.getXHighValue(item);
}

/**
     * Returns the y-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 value.
     */
public double getYValue(int series, int item) {
   [[#variable1a8de2c0]] s = ( [[#variable1a8de2c0]]) this.data.get(series);
  return s.getYValue(item);
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a8de2c0]]
XIntervalSeries 
12[[#1a8de2c0]]
XYIntervalSeries