SORTIE Java Interface
1
|
This class packages float values with additional information. More...
Public Member Functions | |
ModelFloat (float fValue, String sDescriptor, String sXMLTag) | |
Constructor. | |
String | toString () |
Required overridden method. | |
ModelFloat (String sDescriptor, String sXMLTag) | |
Constructor. | |
void | setValue (float fValue) |
Sets the float value. | |
float | getValue () |
Gets the float value. | |
Object | clone () |
Creates a clone of this object. | |
![]() | |
ModelData (String sDescriptor, String sXMLTag) | |
Constructor. | |
String | getDescriptor () |
Returns the descriptor string. | |
void | setDescriptor (String sDescriptor) |
Sets the descriptor string. | |
String | getXMLTag () |
Returns the XML tag associated with this piece of data. | |
void | setXMLTag (String sXMLTag) |
Sets the XML tag associated with this piece of data. | |
Protected Attributes | |
float | m_fValue |
Variable value. | |
![]() | |
String | m_sDescriptor |
Descriptive string. | |
This class packages float values with additional information.
Copyright: Copyright (c) Charles D. Canham 2003
Company: Cary Institute of Ecosystem Studies
Edit history:
---------------—
April 28, 2004: Submitted in beta version (LEM)
sortie.data.simpletypes.ModelFloat.ModelFloat | ( | float | fValue, |
String | sDescriptor, | ||
String | sXMLTag | ||
) |
Constructor.
fValue | Float value being encapsulated |
sDescriptor | Descriptor string. |
sXMLTag | The XML tag associated with this piece of data. |
sortie.data.simpletypes.ModelFloat.ModelFloat | ( | String | sDescriptor, |
String | sXMLTag | ||
) |
Constructor.
sDescriptor | Descriptor string. |
sXMLTag | The XML tag associated with this piece of data. |
Object sortie.data.simpletypes.ModelFloat.clone | ( | ) |
Creates a clone of this object.
float sortie.data.simpletypes.ModelFloat.getValue | ( | ) |
Gets the float value.
void sortie.data.simpletypes.ModelFloat.setValue | ( | float | fValue | ) |
Sets the float value.
fValue | Value to set. |
|
virtual |
Required overridden method.
Implements sortie.data.simpletypes.ModelData.
|
protected |
Variable value.