Public Member Functions | |
| DataMember (String sDisplayName, String sCodeName, int iType) throws ModelException | |
| Constructor. | |
| String | toString () |
| Overridden from Object. | |
| DataMember (String sLabel) | |
| Constructor. | |
| String | GetDisplayName () |
| Gets the display name of this data member. | |
| void | SetDisplayName (String sNewName) |
| Sets the display name of this data member. | |
| String | GetCodeName () |
| Gets the code name of this data member. | |
| int | GetType () |
| Gets the type of this data member. | |
| int | GetCode () |
| Get the data member numerical code. | |
| void | SetCode (int iCode) |
| Sets the data member numerical code. | |
| Object | clone () |
| Creates a deep clone of this object. | |
Static Public Attributes | |
| static final int | INTEGER = 0 |
| Data member is of type integer. | |
| static final int | FLOAT = 1 |
| Data member is of type float. | |
| static final int | CHAR = 2 |
| Data member is of type char. | |
| static final int | BOOLEAN = 3 |
| Data member is of type boolean. | |
Protected Attributes | |
| String | m_sDisplayName |
| The display name is that which will be shown to users. | |
| String | m_sCodeName |
| The code name is that which will be written to detailed output - what the C++ code will recognize. | |
| int | m_iType |
| Data member type - one of the four static finals above. | |
| int | m_iCode |
| Data member code in detailed output files. | |
Not all class members need to be set - just whatever is needed by whoever is using this class.
Copyright: Copyright (c) Charles D. Canham 2003
Company: Institute of Ecosystem Studies
|
||||||||||||||||
|
Constructor.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
|
Constructor.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
|
Creates a deep clone of this object.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
|
Get the data member numerical code.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
|
Gets the code name of this data member.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
|
Gets the display name of this data member.
|
|
|
Gets the type of this data member.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
|
Sets the data member numerical code.
Edit history: ------------------ April 28, 2004: Submitted in beta version (LEM) |
|
|
Sets the display name of this data member.
|
|
|
Overridden from Object.
|
1.4.6-NO