CloneSet971


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
5320.965method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
15369
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/contour/DefaultContourDataset.java
25405
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/contour/DefaultContourDataset.java
35430
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/contour/DefaultContourDataset.java
Next
Last
Clone Instance
1
Line Count
5
Source Line
369
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/contour/DefaultContourDataset.java

/**
 * Returns the x value for the specified series and index (zero-based 
 * indices).  Required by the {@link XYDataset}.
 *
 * @param series  must be zero;
 * @param item  the item index (zero-based).
 *
 * @return The x value.
 */
public Number getX(int series, int item) {
  if (series > 0) {
    throw new IllegalArgumentException("Only one series for contour");
  }
  return this.xValues[item];
}


Next
Previous
Clone Instance
2
Line Count
5
Source Line
405
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/contour/DefaultContourDataset.java

/**
 * Returns the y value for the specified series and index (zero-based 
 * indices).  Required by the {@link XYDataset}.
 *
 * @param series  the series index (must be zero for this dataset).
 * @param item  the item index (zero-based).
 *
 * @return The Y value.
 */
public Number getY(int series, int item) {
  if (series > 0) {
    throw new IllegalArgumentException("Only one series for contour");
  }
  return this.yValues[item];
}


First
Previous
Clone Instance
3
Line Count
5
Source Line
430
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/contour/DefaultContourDataset.java

/**
 * Returns the z value for the specified series and index (zero-based 
 * indices).  Required by the {@link XYDataset}
 *
 * @param series  the series index (must be zero for this dataset).
 * @param item  the item index (zero-based).
 *
 * @return The Z value.
 */
public Number getZ(int series, int item) {
  if (series > 0) {
    throw new IllegalArgumentException("Only one series for contour");
  }
  return this.zValues[item];
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Returns the z value for the specified series and index (zero-based 
     * indices).  Required by the {@link XYDataset}
     *
     * @param series  the series index (must be zero for this dataset).
     * @param item  the item index (zero-based).
     *
     * @return The Z value.
     */
/**
     * Returns the y value for the specified series and index (zero-based 
     * indices).  Required by the {@link XYDataset}.
     *
     * @param series  the series index (must be zero for this dataset).
     * @param item  the item index (zero-based).
     *
     * @return The Y value.
     */
/**
     * Returns the x value for the specified series and index (zero-based 
     * indices).  Required by the {@link XYDataset}.
     *
     * @param series  must be zero;
     * @param item  the item index (zero-based).
     *
     * @return The x value.
     */
public Number  [[#variable18e1bf00]](int series, int item) {
  if (series > 0) {
    throw new IllegalArgumentException("Only one series for contour");
  }
  return this. [[#variable18e1c520]][item];
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#18e1bf00]]
getX 
12[[#18e1bf00]]
getY 
13[[#18e1bf00]]
getZ 
21[[#18e1c520]]
xValues 
22[[#18e1c520]]
yValues 
23[[#18e1c520]]
zValues