Inheritance diagram for javawrapper::GridValue:
Public Member Functions | |
Cell | GetCell () |
Gets the cell for this object. | |
void | AddPackage (PackageGridValue oPackage) |
Adds a package to this grid cell. | |
void | WriteXML (BufferedWriter oOut) throws java.io.IOException |
Writes this grid's data to XML. | |
Protected Attributes | |
Cell | m_oCell |
Grid cell. | |
Vector | mp_oPackages = new Vector(0) |
Vector of PackageGridValue objects. | |
Package Functions | |
GridValue (int iX, int iY, int iNumFloats, int iNumInts, int iNumChars, int iNumBools, Plot oPlot) throws ModelException | |
Constructor. | |
GridValue (int iX, int iY, int iNumFloats, int iNumInts, int iNumChars, int iNumBools, float fLengthXCells, float fLengthYCells, Plot oPlot) throws ModelException | |
Constructor. |
Copyright: Copyright (c) Charles D. Canham 2003
Company: Institute of Ecosystem Studies
javawrapper::GridValue::GridValue | ( | int | iX, | |
int | iY, | |||
int | iNumFloats, | |||
int | iNumInts, | |||
int | iNumChars, | |||
int | iNumBools, | |||
Plot | oPlot | |||
) | throws ModelException [inline, package] |
Constructor.
iX | X cell coordinate. | |
iY | Y cell coordinate. | |
iNumFloats | Number of float data members. | |
iNumInts | Number of integer data members. | |
iNumChars | Number of char data members. | |
iNumBools | Number of bool data members. | |
oPlot | Plot object. |
ModelException | if cell coordinates are invalid. |
javawrapper::GridValue::GridValue | ( | int | iX, | |
int | iY, | |||
int | iNumFloats, | |||
int | iNumInts, | |||
int | iNumChars, | |||
int | iNumBools, | |||
float | fLengthXCells, | |||
float | fLengthYCells, | |||
Plot | oPlot | |||
) | throws ModelException [inline, package] |
Constructor.
iX | X cell coordinate. | |
iY | Y cell coordinate. | |
iNumFloats | Number of float data members. | |
iNumInts | Number of integer data members. | |
iNumChars | Number of char data members. | |
iNumBools | Number of bool data members. | |
fLengthXCells | Length of cell in X direction. | |
fLengthYCells | Length of cell in Y direction. | |
oPlot | Plot object. |
ModelException | if cell coordinates are invalid. |
Cell javawrapper::GridValue::GetCell | ( | ) | [inline] |
Gets the cell for this object.
void javawrapper::GridValue::AddPackage | ( | PackageGridValue | oPackage | ) | [inline] |
Adds a package to this grid cell.
oPackage | Package to add. |
void javawrapper::GridValue::WriteXML | ( | BufferedWriter | oOut | ) | throws java.io.IOException [inline] |
Writes this grid's data to XML.
oOut | File to write to. |
java.io.IOException | if there is a problem writing to file. |
Vector javawrapper::GridValue::mp_oPackages = new Vector(0) [protected] |
Vector of PackageGridValue objects.