EchoPoint API - 3.0.0b5
App Webcontainer

echopoint.google.chart.model
Class Range

java.lang.Object
  extended by echopoint.google.chart.model.Range
All Implemented Interfaces:
Serializable

public class Range
extends Object
implements Serializable

A model object used to represent the range of a chart axis (and data).

Version:
$Id: Range.java 63 2008-08-29 07:46:39Z sptrakesh $
Author:
Rakesh 2008-08-10
See Also:
Serialized Form

Field Summary
 int maximum
          The maximum (ending) number for this range.
 int minimum
          The minimum (staring) number for this range.
 
Constructor Summary
Range(int minimum, int maximum)
          Create a new instance using the specified values.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

minimum

public final int minimum
The minimum (staring) number for this range.


maximum

public final int maximum
The maximum (ending) number for this range.

Constructor Detail

Range

public Range(int minimum,
             int maximum)
Create a new instance using the specified values.

Parameters:
minimum - The minimum value to use.
maximum - The maximum value to use.

EchoPoint API - 3.0.0b5
App Webcontainer