CloneSet301


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
45210.961class_body_declarations[4]
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
143101
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XIntervalSeries.java
245104
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeries.java
Next
Last
Clone Instance
1
Line Count
43
Source Line
101
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XIntervalSeries.java

/**
 * Returns the x-value for the specified item.
 *
 * @param index  the item index.
 *
 * @return The x-value (never <code>null</code>).
 */
public Number getX(int index) {
  XIntervalDataItem item = (XIntervalDataItem) getDataItem(index);
  return item.getX();
}

/**
 * Returns the lower bound of the x-interval for the specified item.
 *
 * @param index  the item index.
 *
 * @return The lower bound of the x-interval.
 *
 * @since 1.0.10
 */
public double getXLowValue(int index) {
  XIntervalDataItem item = (XIntervalDataItem) getDataItem(index);
  return item.getXLowValue();
}

/**
 * Returns the upper bound of the x-interval for the specified item.
 *
 * @param index  the item index.
 *
 * @return The upper bound of the x-interval.
 *
 * @since 1.0.10
 */
public double getXHighValue(int index) {
  XIntervalDataItem item = (XIntervalDataItem) getDataItem(index);
  return item.getXHighValue();
}

/**
 * Returns the y-value for the specified item.
 *
 * @param index  the item index.
 *
 * @return The y-value.
 */
public double getYValue(int index) {
  XIntervalDataItem item = (XIntervalDataItem) getDataItem(index);
  return item.getYValue();
}


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

/**
 * Returns the x-value for the specified item.
 *
 * @param index  the item index.
 *
 * @return The x-value (never <code>null</code>).
 */
public Number getX(int index) {
  XYIntervalDataItem item = (XYIntervalDataItem) getDataItem(index);
  return item.getX();
}

/**
 * Returns the lower bound of the x-interval for the specified item in the
 * series.
 * 
 * @param index  the item index.
 * 
 * @return The lower bound of the x-interval.
 * 
 * @since 1.0.5
 */
public double getXLowValue(int index) {
  XYIntervalDataItem item = (XYIntervalDataItem) getDataItem(index);
  return item.getXLowValue();
}

/**
 * Returns the upper bound of the x-interval for the specified item in the
 * series.
 * 
 * @param index  the item index.
 * 
 * @return The upper bound of the x-interval.
 * 
 * @since 1.0.5
 */
public double getXHighValue(int index) {
  XYIntervalDataItem item = (XYIntervalDataItem) getDataItem(index);
  return item.getXHighValue();
}

/**
 * Returns the y-value for the specified item.
 *
 * @param index  the item index.
 *
 * @return The y-value.
 */
public double getYValue(int index) {
  XYIntervalDataItem item = (XYIntervalDataItem) getDataItem(index);
  return item.getYValue();
}


Clone AbstractionParameter Count: 1Parameter Bindings

/**
     * Returns the x-value for the specified item.
     *
     * @param index  the item index.
     *
     * @return The x-value (never <code>null</code>).
     */
public Number getX(int index) {
   [[#variable1a8e1160]] item = ( [[#variable1a8e1160]]) getDataItem(index);
  return item.getX();
}

/**
     * Returns the lower bound of the x-interval for the specified item in the
     * series.
     * 
     * @param index  the item index.
     * 
     * @return The lower bound of the x-interval.
     * 
     * @since 1.0.5
     */
/**
     * Returns the lower bound of the x-interval for the specified item.
     *
     * @param index  the item index.
     *
     * @return The lower bound of the x-interval.
     *
     * @since 1.0.10
     */
public double getXLowValue(int index) {
   [[#variable1a8e1160]] item = ( [[#variable1a8e1160]]) getDataItem(index);
  return item.getXLowValue();
}

/**
     * Returns the upper bound of the x-interval for the specified item in the
     * series.
     * 
     * @param index  the item index.
     * 
     * @return The upper bound of the x-interval.
     * 
     * @since 1.0.5
     */
/**
     * Returns the upper bound of the x-interval for the specified item.
     *
     * @param index  the item index.
     *
     * @return The upper bound of the x-interval.
     *
     * @since 1.0.10
     */
public double getXHighValue(int index) {
   [[#variable1a8e1160]] item = ( [[#variable1a8e1160]]) getDataItem(index);
  return item.getXHighValue();
}

/**
     * Returns the y-value for the specified item.
     *
     * @param index  the item index.
     *
     * @return The y-value.
     */
public double getYValue(int index) {
   [[#variable1a8e1160]] item = ( [[#variable1a8e1160]]) getDataItem(index);
  return item.getYValue();
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1a8e1160]]
XIntervalDataItem 
12[[#1a8e1160]]
XYIntervalDataItem