/**
* 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];
}
|