CloneSet56


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
22720.957method_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
12281
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java
22306
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java
32339
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java
42365
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java
52191
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java
62231
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java
72257
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java
82283
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java
92309
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java
102350
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java
112377
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java
122405
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java
132284
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java
142305
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java
152326
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java
162347
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java
172368
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultIntervalXYDataset.java
182193
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultXYDataset.java
192194
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultXYZDataset.java
202280
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/DefaultXYZDataset.java
212223
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java
222251
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/VectorSeriesCollection.java
232238
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.java
242250
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.java
252262
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.java
262275
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.java
272288
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.java
Next
Last
Clone Instance
1
Line Count
2
Source Line
281
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java

/**
 * Returns the x-value for an item within a series.  The x-values may or 
 * may not be returned in ascending order, that is up to the class 
 * implementing the interface.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The x-value (never <code>null</code>).
 */
public Number getX(int series, int item) {
  return new Double(getXValue(series, item));
}


Next
Previous
Clone Instance
2
Line Count
2
Source Line
306
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/statistics/SimpleHistogramDataset.java

/**
 * Returns the y-value for an item within a series.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The y-value (possibly <code>null</code>).
 */
public Number getY(int series, int item) {
  return new Double(getYValue(series, item));
}


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

/**
 * Returns the starting X value for the specified series and item.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The value.
 */
public Number getStartX(int series, int item) {
  return new Double(getStartXValue(series, item));
}


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

/**
 * Returns the ending X value for the specified series and item.
 *
 * @param series  the series index (zero-based).
 * @param item  the item index (zero-based).
 *
 * @return The value.
 */
public Number getEndX(int series, int item) {
  return new Double(getEndXValue(series, item));
}


Next
Previous
Clone Instance
5
Line Count
2
Source Line
191
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.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 Number getX(int series, int item) {
  return new Double(getXValue(series, item));
}


Next
Previous
Clone Instance
6
Line Count
2
Source Line
231
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java

/**
 * Returns the open-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The open-value.
 */
public Number getOpen(int series, int item) {
  return new Double(getOpenValue(series, item));
}


Next
Previous
Clone Instance
7
Line Count
2
Source Line
257
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java

/**
 * Returns the close-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The close-value.
 */
public Number getClose(int series, int item) {
  return new Double(getCloseValue(series, item));
}


Next
Previous
Clone Instance
8
Line Count
2
Source Line
283
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java

/**
 * Returns the high-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The high-value.
 */
public Number getHigh(int series, int item) {
  return new Double(getHighValue(series, item));
}


Next
Previous
Clone Instance
9
Line Count
2
Source Line
309
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/ohlc/OHLCSeriesCollection.java

/**
 * Returns the low-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The low-value.
 */
public Number getLow(int series, int item) {
  return new Double(getLowValue(series, item));
}


Next
Previous
Clone Instance
10
Line Count
2
Source Line
350
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java

/**
 * Returns the x-value for an item within a series.  The x-values may or
 * may not be returned in ascending order, that is up to the class
 * implementing the interface.
 *
 * @param series  the series (zero-based index).
 * @param item  the item (zero-based index).
 *
 * @return The x-value.
 */
public Number getX(int series, int item) {
  return new Double(getXValue(series, item));
}


Next
Previous
Clone Instance
11
Line Count
2
Source Line
377
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/time/TimeTableXYDataset.java

/**
 * Returns the starting X value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item within a series (zero-based index).
 *
 * @return The starting X value for the specified series and item.
 *
 * @see #getStartXValue(int, int)
 */
public Number getStartX(int series, int item) {
  return new Double(getStartXValue(series, item));
}


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

/**
 * Returns the ending X value for the specified series and item.
 *
 * @param series  the series (zero-based index).
 * @param item  the item within a series (zero-based index).
 *
 * @return The ending X value for the specified series and item.
 *
 * @see #getEndXValue(int, int)
 */
public Number getEndX(int series, int item) {
  return new Double(getEndXValue(series, item));
}


Next
Previous
Clone Instance
13
Line Count
2
Source Line
284
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 #getEndXValue(int, int)
 */
public Number getEndX(int series, int item) {
  return new Double(getEndXValue(series, item));
}


Next
Previous
Clone Instance
14
Line Count
2
Source Line
305
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 #getEndYValue(int, int)
 */
public Number getEndY(int series, int item) {
  return new Double(getEndYValue(series, item));
}


Next
Previous
Clone Instance
15
Line Count
2
Source Line
326
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 #getStartXValue(int, int)
 */
public Number getStartX(int series, int item) {
  return new Double(getStartXValue(series, item));
}


Next
Previous
Clone Instance
16
Line Count
2
Source Line
347
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 #getStartYValue(int, int)
 */
public Number getStartY(int series, int item) {
  return new Double(getStartYValue(series, item));
}


Next
Previous
Clone Instance
17
Line Count
2
Source Line
368
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 #getXValue(int, int)
 */
public Number getX(int series, int item) {
  return new Double(getXValue(series, item));
}


Next
Previous
Clone Instance
18
Line Count
2
Source Line
193
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 #getXValue(int, int)
 */
public Number getX(int series, int item) {
  return new Double(getXValue(series, item));
}


Next
Previous
Clone Instance
19
Line Count
2
Source Line
194
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 #getXValue(int, int)
 */
public Number getX(int series, int item) {
  return new Double(getXValue(series, item));
}


Next
Previous
Clone Instance
20
Line Count
2
Source Line
280
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 Number getZ(int series, int item) {
  return new Double(getZValue(series, item));
}


Next
Previous
Clone Instance
21
Line Count
2
Source Line
223
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.  Note that this method
 * creates a new {@link Double} instance every time it is called---use
 * {@link #getXValue(int, int)} instead, if possible.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The x-value.
 */
public Number getX(int series, int item) {
  return new Double(getXValue(series, item));
}


Next
Previous
Clone Instance
22
Line Count
2
Source Line
251
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.  Note that this method
 * creates a new {@link Double} instance every time it is called---use
 * {@link #getYValue(int, int)} instead, if possible.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The y-value.
 */
public Number getY(int series, int item) {
  return new Double(getYValue(series, item));
}


Next
Previous
Clone Instance
23
Line Count
2
Source Line
238
Source File
E:/TSE/Projects-CloneDR/jfreechart-1.0.10/src/org/jfree/data/xy/XYIntervalSeriesCollection.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 Number getY(int series, int item) {
  return new Double(getYValue(series, item));
}


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

/**
 * Returns the start x-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The x-value.
 */
public Number getStartX(int series, int item) {
  return new Double(getStartXValue(series, item));
}


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

/**
 * Returns the end x-value for an item within a series.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The x-value.
 */
public Number getEndX(int series, int item) {
  return new Double(getEndXValue(series, item));
}


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

/**
 * Returns the start y-value for an item within a series.  This method
 * maps directly to {@link #getY(int, int)}.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The start y-value.
 */
public Number getStartY(int series, int item) {
  return new Double(getStartYValue(series, item));
}


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

/**
 * Returns the end y-value for an item within a series.  This method
 * maps directly to {@link #getY(int, int)}.
 *
 * @param series  the series index.
 * @param item  the item index.
 *
 * @return The end y-value.
 */
public Number getEndY(int series, int item) {
  return new Double(getEndYValue(series, item));
}


Clone AbstractionParameter Count: 2Parameter Bindings

/**
     * Returns the low-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The low-value.
     */
/**
     * Returns the high-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The high-value.
     */
/**
     * Returns the ending X value for the specified series and item.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The value.
     */
/**
     * Returns the y-value for an item within a series.  Note that this method
     * creates a new {@link Double} instance every time it is called---use
     * {@link #getYValue(int, int)} instead, if possible.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The y-value.
     */
/**
     * Returns the end y-value for an item within a series.  This method
     * maps directly to {@link #getY(int, int)}.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The end y-value.
     */
/**
     * Returns the close-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The close-value.
     */
/**
     * Returns the start y-value for an item within a series.  This method
     * maps directly to {@link #getY(int, int)}.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The start y-value.
     */
/**
     * Returns the starting X value for the specified series and item.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The value.
     */
/**
     * Returns the x-value for an item within a series.  Note that this method
     * creates a new {@link Double} instance every time it is called---use
     * {@link #getXValue(int, int)} instead, if possible.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The x-value.
     */
/**
     * Returns the open-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The open-value.
     */
/**
     * 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 end x-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The x-value.
     */
/**
     * 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 y-value for an item within a series.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The y-value (possibly <code>null</code>).
     */
/**
     * Returns the x-value for an item within a series.  The x-values may or 
     * may not be returned in ascending order, that is up to the class 
     * implementing the interface.
     *
     * @param series  the series index (zero-based).
     * @param item  the item index (zero-based).
     *
     * @return The x-value (never <code>null</code>).
     */
/**
     * Returns the x-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The x-value.
     */
/**
     * Returns the ending X value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item within a series (zero-based index).
     *
     * @return The ending X value for the specified series and item.
     *
     * @see #getEndXValue(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 #getXValue(int, int)
     */
/**
     * Returns the start x-value for an item within a series.
     *
     * @param series  the series index.
     * @param item  the item index.
     *
     * @return The x-value.
     */
/**
     * Returns the starting X value for the specified series and item.
     *
     * @param series  the series (zero-based index).
     * @param item  the item within a series (zero-based index).
     *
     * @return The starting X value for the specified series and item.
     *
     * @see #getStartXValue(int, int)
     */
/**
     * Returns the x-value for an item within a series.  The x-values may or
     * may not be returned in ascending order, that is up to the class
     * implementing the interface.
     *
     * @param series  the series (zero-based index).
     * @param item  the item (zero-based index).
     *
     * @return The x-value.
     */
/**
     * 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 #getXValue(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 #getStartYValue(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 #getStartXValue(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 #getEndYValue(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 #getEndXValue(int, int)
     */
public Number  [[#variable1ab0c520]](int series, int item) {
  return new Double( [[#variable1ab0c4c0]](series, item));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#1ab0c520]]
getX 
12[[#1ab0c520]]
getY 
13[[#1ab0c520]]
getStartX 
14[[#1ab0c520]]
getEndX 
15[[#1ab0c520]]
getX 
16[[#1ab0c520]]
getOpen 
17[[#1ab0c520]]
getClose 
18[[#1ab0c520]]
getHigh 
19[[#1ab0c520]]
getLow 
110[[#1ab0c520]]
getX 
111[[#1ab0c520]]
getStartX 
112[[#1ab0c520]]
getEndX 
113[[#1ab0c520]]
getEndX 
114[[#1ab0c520]]
getEndY 
115[[#1ab0c520]]
getStartX 
116[[#1ab0c520]]
getStartY 
117[[#1ab0c520]]
getX 
118[[#1ab0c520]]
getX 
119[[#1ab0c520]]
getX 
120[[#1ab0c520]]
getZ 
121[[#1ab0c520]]
getX 
122[[#1ab0c520]]
getY 
123[[#1ab0c520]]
getY 
124[[#1ab0c520]]
getStartX 
125[[#1ab0c520]]
getEndX 
126[[#1ab0c520]]
getStartY 
127[[#1ab0c520]]
getEndY 
21[[#1ab0c4c0]]
getXValue 
22[[#1ab0c4c0]]
getYValue 
23[[#1ab0c4c0]]
getStartXValue 
24[[#1ab0c4c0]]
getEndXValue 
25[[#1ab0c4c0]]
getXValue 
26[[#1ab0c4c0]]
getOpenValue 
27[[#1ab0c4c0]]
getCloseValue 
28[[#1ab0c4c0]]
getHighValue 
29[[#1ab0c4c0]]
getLowValue 
210[[#1ab0c4c0]]
getXValue 
211[[#1ab0c4c0]]
getStartXValue 
212[[#1ab0c4c0]]
getEndXValue 
213[[#1ab0c4c0]]
getEndXValue 
214[[#1ab0c4c0]]
getEndYValue 
215[[#1ab0c4c0]]
getStartXValue 
216[[#1ab0c4c0]]
getStartYValue 
217[[#1ab0c4c0]]
getXValue 
218[[#1ab0c4c0]]
getXValue 
219[[#1ab0c4c0]]
getXValue 
220[[#1ab0c4c0]]
getZValue 
221[[#1ab0c4c0]]
getXValue 
222[[#1ab0c4c0]]
getYValue 
223[[#1ab0c4c0]]
getYValue 
224[[#1ab0c4c0]]
getStartXValue 
225[[#1ab0c4c0]]
getEndXValue 
226[[#1ab0c4c0]]
getStartYValue 
227[[#1ab0c4c0]]
getEndYValue