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.
-
DoubleGrid()
-
-
DoubleGrid(double[][])
-
-
clone()
- Creates a clone of the DoubleGrid object
-
copyright()
-
-
getValues()
-
-
getValues(int, int)
- Gets the specified double from the array
-
setValues(double[][])
-
-
setValues(int, int, double)
- Sets a specified double in the array
-
trimColumns(int)
-
DoubleGrid
public DoubleGrid()
DoubleGrid
public DoubleGrid(double values[][])
clone
public Object clone()
- Creates a clone of the DoubleGrid object
- Overrides:
- clone in class Object
copyright
public static String copyright()
getValues
public double[][] getValues()
getValues
public double getValues(int row,
int col)
- Gets the specified double from the array
- Parameters:
- row - int
- col - int
setValues
public void setValues(double values[][])
setValues
public void setValues(int row,
int col,
double val)
- Sets a specified double in the array
- Parameters:
- row - int
- col - int
- val - double
trimColumns
public void trimColumns(int newCols)
All Packages Class Hierarchy This Package Previous Next Index