net.infonode.properties.types
public class FloatProperty extends ValueHandlerProperty
Version: $Revision: 1.5 $
Constructor Summary | |
---|---|
FloatProperty(PropertyGroup group, String name, String description, PropertyValueHandler valueHandler)
Constructor.
| |
FloatProperty(PropertyGroup group, String name, String description, PropertyValueHandler valueHandler, float minValue, float maxValue)
Constructor.
| |
FloatProperty(PropertyGroup group, String name, String description, PropertyValueHandler valueHandler, float minValue, float maxValue, int preferredDigitCount, float preferredDelta)
Constructor.
|
Method Summary | |
---|---|
boolean | canBeAssiged(Object value) |
float | get(Object valueContainer)
Returns the float value of this property in a value container.
|
float | getMaxValue()
Returns the largest value that this property can have.
|
float | getMinValue()
Returns the smallest value that this property can have.
|
float | getPreferredDelta()
Returns the preferred amount to increase and decrease a property value by.
|
int | getPreferredDigitCount()
Returns the preferred number of digits to allocate space for in an editor for a property value.
|
void | set(Object valueContainer, float value)
Sets the float value of this property in a value container.
|
Parameters: group the property group name the property name description the property description valueHandler handles values for this property
Parameters: group the property group name the property name description the property description valueHandler handles values for this property minValue the smallest value that this property can have maxValue the largest value that this property can have
Parameters: group the property group name the property name description the property description valueHandler handles values for this property minValue the smallest value that this property can have maxValue the largest value that this property can have preferredDigitCount the preferred number of digits to allocate space for in an editor for a property value preferredDelta the preferred amount to increase and decrease a property value by
Parameters: valueContainer the value container
Returns: the float value of this property
Returns: the largest value that this property can have
Returns: the smallest value that this property can have
Returns: the preferred amount to increase and decrease a property value by
Returns: the preferred number of digits to allocate space for in an editor for a property value
Parameters: valueContainer the value container value the float value