CloneSet513


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

/**
 * Returns the x-value for one item within a series.  This should represent
 * a point in time, encoded as milliseconds in the same way as
 * java.util.Date.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The x-value for the item within the series.
 */
public Number getX(int series, int item) {
  List oneSeriesData = (List) this.allSeriesData.get(series);
  WindDataItem windItem = (WindDataItem) oneSeriesData.get(item);
  return windItem.getX();
}


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

/**
 * Returns the wind direction for one item within a series.  This is a
 * number between 0 and 12, like the numbers on an upside-down clock face.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The wind direction for the item within the series.
 */
public Number getWindDirection(int series, int item) {
  List oneSeriesData = (List) this.allSeriesData.get(series);
  WindDataItem windItem = (WindDataItem) oneSeriesData.get(item);
  return windItem.getWindDirection();
}


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

/**
 * Returns the wind force for one item within a series.  This is a number
 * between 0 and 12, as defined by the Beaufort scale.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The wind force for the item within the series.
 */
public Number getWindForce(int series, int item) {
  List oneSeriesData = (List) this.allSeriesData.get(series);
  WindDataItem windItem = (WindDataItem) oneSeriesData.get(item);
  return windItem.getWindForce();
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns the wind force for one item within a series.  This is a number
     * between 0 and 12, as defined by the Beaufort scale.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The wind force for the item within the series.
     */
/**
     * Returns the wind direction for one item within a series.  This is a
     * number between 0 and 12, like the numbers on an upside-down clock face.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The wind direction for the item within the series.
     */
/**
     * Returns the x-value for one item within a series.  This should represent
     * a point in time, encoded as milliseconds in the same way as
     * java.util.Date.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The x-value for the item within the series.
     */
public Number  [[#variable18c0ddc0]](int series, int item) {
  List oneSeriesData = (List) this.allSeriesData.get(series);
  WindDataItem windItem = (WindDataItem) oneSeriesData.get(item);
  return windItem. [[#variable18c0ddc0]]();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18c0ddc0]]
getX 
12[[#18c0ddc0]]
getWindDirection 
13[[#18c0ddc0]]
getWindForce