CloneSet126


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
31120.971method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13152
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java
23174
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java
33196
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java
43218
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java
53240
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java
63262
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java
73171
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultXYDataset.java
83214
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultXYDataset.java
93172
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultXYZDataset.java
103215
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultXYZDataset.java
113258
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultXYZDataset.java
Next
Last
Clone Instance
1
Line Count
3
Source Line
152
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java

/**
 * Returns the x-value for an item within a series.
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (in the range <code>0</code> to
 *     <code>getItemCount(series)</code>).
 *
 * @return The x-value.
 *
 * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
 *     within the specified range.
 * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
 *     within the specified range.
 *
 * @see #getX(int, int)
 */
public double getXValue(int series, int item) {
  double[][] seriesData = (double[][]) this.seriesList.get(series);
  return seriesData[0][item];
}


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

/**
 * Returns the y-value for an item within a series.
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (in the range <code>0</code> to
 *     <code>getItemCount(series)</code>).
 *
 * @return The y-value.
 *
 * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
 *     within the specified range.
 * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
 *     within the specified range.
 *
 * @see #getY(int, int)
 */
public double getYValue(int series, int item) {
  double[][] seriesData = (double[][]) this.seriesList.get(series);
  return seriesData[3][item];
}


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

/**
 * Returns the starting x-value for an item within a series.
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (in the range <code>0</code> to
 *     <code>getItemCount(series)</code>).
 *
 * @return The starting x-value.
 *
 * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
 *     within the specified range.
 * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
 *     within the specified range.
 *
 * @see #getStartX(int, int)
 */
public double getStartXValue(int series, int item) {
  double[][] seriesData = (double[][]) this.seriesList.get(series);
  return seriesData[1][item];
}


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

/**
 * Returns the ending x-value for an item within a series.
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (in the range <code>0</code> to
 *     <code>getItemCount(series)</code>).
 *
 * @return The ending x-value.
 *
 * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
 *     within the specified range.
 * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
 *     within the specified range.
 *
 * @see #getEndX(int, int)
 */
public double getEndXValue(int series, int item) {
  double[][] seriesData = (double[][]) this.seriesList.get(series);
  return seriesData[2][item];
}


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

/**
 * Returns the starting y-value for an item within a series.
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (in the range <code>0</code> to
 *     <code>getItemCount(series)</code>).
 *
 * @return The starting y-value.
 *
 * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
 *     within the specified range.
 * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
 *     within the specified range.
 *
 * @see #getStartY(int, int)
 */
public double getStartYValue(int series, int item) {
  double[][] seriesData = (double[][]) this.seriesList.get(series);
  return seriesData[4][item];
}


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

/**
 * Returns the ending y-value for an item within a series.
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (in the range <code>0</code> to
 *     <code>getItemCount(series)</code>).
 *
 * @return The ending y-value.
 *
 * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
 *     within the specified range.
 * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
 *     within the specified range.
 *
 * @see #getEndY(int, int)
 */
public double getEndYValue(int series, int item) {
  double[][] seriesData = (double[][]) this.seriesList.get(series);
  return seriesData[5][item];
}


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

/**
 * Returns the x-value for an item within a series.
 * 
 * @param series  the series index (in the range <code>0</code> to 
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (in the range <code>0</code> to 
 *     <code>getItemCount(series)</code>).
 *     
 * @return The x-value.
 * 
 * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not 
 *     within the specified range.
 * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not 
 *     within the specified range.
 * 
 * @see #getX(int, int)
 */
public double getXValue(int series, int item) {
  double[][] seriesData = (double[][]) this.seriesList.get(series);
  return seriesData[0][item];
}


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

/**
 * Returns the y-value for an item within a series.
 * 
 * @param series  the series index (in the range <code>0</code> to 
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (in the range <code>0</code> to 
 *     <code>getItemCount(series)</code>).
 *     
 * @return The y-value.
 * 
 * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not 
 *     within the specified range.
 * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not 
 *     within the specified range.
 * 
 * @see #getY(int, int)
 */
public double getYValue(int series, int item) {
  double[][] seriesData = (double[][]) this.seriesList.get(series);
  return seriesData[1][item];
}


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

/**
 * Returns the x-value for an item within a series.
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (in the range <code>0</code> to
 *     <code>getItemCount(series)</code>).
 *
 * @return The x-value.
 *
 * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
 *     within the specified range.
 * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
 *     within the specified range.
 *
 * @see #getX(int, int)
 */
public double getXValue(int series, int item) {
  double[][] seriesData = (double[][]) this.seriesList.get(series);
  return seriesData[0][item];
}


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

/**
 * Returns the y-value for an item within a series.
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (in the range <code>0</code> to
 *     <code>getItemCount(series)</code>).
 *
 * @return The y-value.
 *
 * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
 *     within the specified range.
 * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
 *     within the specified range.
 *
 * @see #getY(int, int)
 */
public double getYValue(int series, int item) {
  double[][] seriesData = (double[][]) this.seriesList.get(series);
  return seriesData[1][item];
}


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

/**
 * Returns the z-value for an item within a series.
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 * @param item  the item index (in the range <code>0</code> to
 *     <code>getItemCount(series)</code>).
 *
 * @return The z-value.
 *
 * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
 *     within the specified range.
 * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
 *     within the specified range.
 *
 * @see #getZ(int, int)
 */
public double getZValue(int series, int item) {
  double[][] seriesData = (double[][]) this.seriesList.get(series);
  return seriesData[2][item];
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Returns the y-value for an item within a series.
     * 
     * @param series  the series index (in the range <code>0</code> to 
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (in the range <code>0</code> to 
     *     <code>getItemCount(series)</code>).
     *     
     * @return The y-value.
     * 
     * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not 
     *     within the specified range.
     * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not 
     *     within the specified range.
     * 
     * @see #getY(int, int)
     */
/**
     * Returns the x-value for an item within a series.
     * 
     * @param series  the series index (in the range <code>0</code> to 
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (in the range <code>0</code> to 
     *     <code>getItemCount(series)</code>).
     *     
     * @return The x-value.
     * 
     * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not 
     *     within the specified range.
     * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not 
     *     within the specified range.
     * 
     * @see #getX(int, int)
     */
/**
     * Returns the z-value for an item within a series.
     *
     * @param series  the series index (in the range <code>0</code> to
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (in the range <code>0</code> to
     *     <code>getItemCount(series)</code>).
     *
     * @return The z-value.
     *
     * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
     *     within the specified range.
     * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
     *     within the specified range.
     *
     * @see #getZ(int, int)
     */
/**
     * Returns the ending y-value for an item within a series.
     *
     * @param series  the series index (in the range <code>0</code> to
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (in the range <code>0</code> to
     *     <code>getItemCount(series)</code>).
     *
     * @return The ending y-value.
     *
     * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
     *     within the specified range.
     * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
     *     within the specified range.
     *
     * @see #getEndY(int, int)
     */
/**
     * Returns the starting y-value for an item within a series.
     *
     * @param series  the series index (in the range <code>0</code> to
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (in the range <code>0</code> to
     *     <code>getItemCount(series)</code>).
     *
     * @return The starting y-value.
     *
     * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
     *     within the specified range.
     * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
     *     within the specified range.
     *
     * @see #getStartY(int, int)
     */
/**
     * Returns the ending x-value for an item within a series.
     *
     * @param series  the series index (in the range <code>0</code> to
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (in the range <code>0</code> to
     *     <code>getItemCount(series)</code>).
     *
     * @return The ending x-value.
     *
     * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
     *     within the specified range.
     * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
     *     within the specified range.
     *
     * @see #getEndX(int, int)
     */
/**
     * Returns the starting x-value for an item within a series.
     *
     * @param series  the series index (in the range <code>0</code> to
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (in the range <code>0</code> to
     *     <code>getItemCount(series)</code>).
     *
     * @return The starting x-value.
     *
     * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
     *     within the specified range.
     * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
     *     within the specified range.
     *
     * @see #getStartX(int, int)
     */
/**
     * Returns the y-value for an item within a series.
     *
     * @param series  the series index (in the range <code>0</code> to
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (in the range <code>0</code> to
     *     <code>getItemCount(series)</code>).
     *
     * @return The y-value.
     *
     * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
     *     within the specified range.
     * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
     *     within the specified range.
     *
     * @see #getY(int, int)
     */
/**
     * Returns the x-value for an item within a series.
     *
     * @param series  the series index (in the range <code>0</code> to
     *     <code>getSeriesCount() - 1</code>).
     * @param item  the item index (in the range <code>0</code> to
     *     <code>getItemCount(series)</code>).
     *
     * @return The x-value.
     *
     * @throws ArrayIndexOutOfBoundsException if <code>series</code> is not
     *     within the specified range.
     * @throws ArrayIndexOutOfBoundsException if <code>item</code> is not
     *     within the specified range.
     *
     * @see #getX(int, int)
     */
public double  [[#variable1aa72680]](int series, int item) {
  double[][] seriesData = (double[][]) this.seriesList.get(series);
  return seriesData[ [[#variable1aa4e740]]][item];
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1aa72680]]
getXValue 
12[[#1aa72680]]
getYValue 
13[[#1aa72680]]
getStartXValue 
14[[#1aa72680]]
getEndXValue 
15[[#1aa72680]]
getStartYValue 
16[[#1aa72680]]
getEndYValue 
17[[#1aa72680]]
getXValue 
18[[#1aa72680]]
getYValue 
19[[#1aa72680]]
getXValue 
110[[#1aa72680]]
getYValue 
111[[#1aa72680]]
getZValue 
21[[#1aa4e740]]
0 
22[[#1aa4e740]]
3 
23[[#1aa4e740]]
1 
24[[#1aa4e740]]
2 
25[[#1aa4e740]]
4 
26[[#1aa4e740]]
5 
27[[#1aa4e740]]
0 
28[[#1aa4e740]]
1 
29[[#1aa4e740]]
0 
210[[#1aa4e740]]
1 
211[[#1aa4e740]]
2