|
SORTIE Java Interface
1
|
Class for holding the data for a single grid cell. More...
Public Member Functions | |
| Cell | getCell () |
| Gets the cell for this object. | |
| void | writeXML (BufferedWriter oOut) throws java.io.IOException |
| Writes this grid's data to XML. | |
Public Member Functions inherited from sortie.data.simpletypes.DataMemberData | |
| DataMemberData (int iNumFloats, int iNumInts, int iNumChars, int iNumBools) throws ModelException | |
| Constructor. | |
| int | getNumberOfFloats () |
| int | getNumberOfInts () |
| int | getNumberOfBools () |
| int | getNumberOfChars () |
| void | setValue (int iIndex, Integer iValue) throws ModelException |
| Sets an integer data member's value. | |
| void | setValue (int iIndex, Float fValue) throws ModelException |
| Sets a float data member's value. | |
| void | setValue (int iIndex, Boolean bValue) throws ModelException |
| Sets a boolean data member's value. | |
| void | setValue (int iIndex, String sValue) throws ModelException |
| Sets a char data member's value. | |
| Float | getFloat (int iIndex) throws ModelException |
| Gets a float data member's value. | |
| Integer | getInt (int iIndex) throws ModelException |
| Gets an int data member's value. | |
| Boolean | getBool (int iIndex) throws ModelException |
| Gets a boolean data member's value. | |
| String | getChar (int iIndex) throws ModelException |
| Gets a char data member's value. | |
| void | removeFloat (int iIndex) throws ModelException |
| Removes a float data member's value. | |
| void | removeInt (int iIndex) throws ModelException |
| Removes an int data member's value. | |
| void | removeBool (int iIndex) throws ModelException |
| Removes a bool data member's value. | |
| void | removeChar (int iIndex) throws ModelException |
| Removes a char data member's value. | |
Public Attributes | |
| ArrayList< PackageGridValue > | mp_oPackages = new ArrayList<PackageGridValue>(0) |
| Vector of PackageGridValue objects. | |
Protected Attributes | |
| Cell | m_oCell |
| Grid cell. | |
Protected Attributes inherited from sortie.data.simpletypes.DataMemberData | |
| Float[] | mp_fFloats |
| Float data members. | |
| Integer[] | mp_iInts |
| Int data members. | |
| Boolean[] | mp_bBools |
| Bool data members. | |
| String[] | mp_sChars |
| Char data members - these may get truncated when read into C++. | |
Class for holding the data for a single grid cell.
Copyright: Copyright (c) Charles D. Canham 2003
Company: Cary Institute of Ecosystem Studies
Edit history:
---------------—
April 28, 2004: Submitted in beta version (LEM)
| Cell sortie.data.funcgroups.GridValue.getCell | ( | ) |
Gets the cell for this object.
| void sortie.data.funcgroups.GridValue.writeXML | ( | BufferedWriter | oOut | ) | throws java.io.IOException |
Writes this grid's data to XML.
| oOut | File to write to. |
| java.io.IOException | if there is a problem writing to file. |
| ArrayList<PackageGridValue> sortie.data.funcgroups.GridValue.mp_oPackages = new ArrayList<PackageGridValue>(0) |
Vector of PackageGridValue objects.
1.8.2