javax.accessibility
public interface AccessibleValue
The AccessibleContext.getAccessibleValue() method should
 return null if an object does not implement this interface.
Since: 1.2
See Also: Accessible AccessibleContext getAccessibleValue
UNKNOWN: updated to 1.4
| Method Summary | |
|---|---|
| Number | getCurrentAccessibleValue() 
 Gets the current value of this object, or null if it has not been set.
 | 
| Number | getMaximumAccessibleValue() 
 Gets the maximum value in the range of this object, or null if there is
 no maximum.
 | 
| Number | getMinimumAccessibleValue() 
 Gets the minimum value in the range of this object, or null if there is
 no minimum.
 | 
| boolean | setCurrentAccessibleValue(Number number) 
 Sets the current value of this object.  | 
Returns: the current value, or null
See Also: setCurrentAccessibleValue
Returns: the maximum
See Also: getMinimumAccessibleValue
Returns: the minimum
See Also: getMaximumAccessibleValue
Parameters: number the new value
Returns: true on success