CloneSet355


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4420.978method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
14207
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java
24235
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java
34277
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java
44291
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java
Next
Last
Clone Instance
1
Line Count
4
Source Line
207
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java

/**
 * Returns the x-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The x-value.
 */
public double getXValue(int series, int item) {
  VectorSeries s = (VectorSeries) this.data.get(series);
  VectorDataItem di = (VectorDataItem) s.getDataItem(item);
  return di.getXValue();
}


Next
Previous
Clone Instance
2
Line Count
4
Source Line
235
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java

/**
 * Returns the y-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The y-value.
 */
public double getYValue(int series, int item) {
  VectorSeries s = (VectorSeries) this.data.get(series);
  VectorDataItem di = (VectorDataItem) s.getDataItem(item);
  return di.getYValue();
}


Next
Previous
Clone Instance
3
Line Count
4
Source Line
277
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java

/**
 * Returns the x-component of the vector for an item in a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The x-component of the vector.
 */
public double getVectorXValue(int series, int item) {
  VectorSeries s = (VectorSeries) this.data.get(series);
  VectorDataItem di = (VectorDataItem) s.getDataItem(item);
  return di.getVectorX();
}


First
Previous
Clone Instance
4
Line Count
4
Source Line
291
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java

/**
 * Returns the y-component of the vector for an item in a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The y-component of the vector.
 */
public double getVectorYValue(int series, int item) {
  VectorSeries s = (VectorSeries) this.data.get(series);
  VectorDataItem di = (VectorDataItem) s.getDataItem(item);
  return di.getVectorY();
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Returns the y-component of the vector for an item in a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The y-component of the vector.
     */
/**
     * Returns the x-component of the vector for an item in a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The x-component of the vector.
     */
/**
     * Returns the y-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The y-value.
     */
/**
     * Returns the x-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The x-value.
     */
public double  [[#variable1a934e00]](int series, int item) {
  VectorSeries s = (VectorSeries) this.data.get(series);
  VectorDataItem di = (VectorDataItem) s.getDataItem(item);
  return di. [[#variable1a920780]]();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a934e00]]
getXValue 
12[[#1a934e00]]
getYValue 
13[[#1a934e00]]
getVectorXValue 
14[[#1a934e00]]
getVectorYValue 
21[[#1a920780]]
getXValue 
22[[#1a920780]]
getYValue 
23[[#1a920780]]
getVectorX 
24[[#1a920780]]
getVectorY