All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.eou.swingchart.DoubleGrid

java.lang.Object
   |
   +----com.ibm.eou.swingchart.DoubleGrid

public class DoubleGrid
extends Object
implements Serializable, Cloneable
Class to wrapper a 2D array of doubles as bean property suitable for customization by a property editors in a visual builder.


Constructor Index

 o DoubleGrid()
 o DoubleGrid(double[][])

Method Index

 o clone()
Creates a clone of the DoubleGrid object
 o copyright()
 o getValues()
 o getValues(int, int)
Gets the specified double from the array
 o setValues(double[][])
 o setValues(int, int, double)
Sets a specified double in the array
 o trimColumns(int)

Constructors

 o DoubleGrid
 public DoubleGrid()
 o DoubleGrid
 public DoubleGrid(double values[][])

Methods

 o clone
 public Object clone()
Creates a clone of the DoubleGrid object

Overrides:
clone in class Object
 o copyright
 public static String copyright()
 o getValues
 public double[][] getValues()
 o getValues
 public double getValues(int row,
                         int col)
Gets the specified double from the array

Parameters:
row - int
col - int
 o setValues
 public void setValues(double values[][])
 o setValues
 public void setValues(int row,
                       int col,
                       double val)
Sets a specified double in the array

Parameters:
row - int
col - int
val - double
 o trimColumns
 public void trimColumns(int newCols)

All Packages  Class Hierarchy  This Package  Previous  Next  Index