javax.accessibility
Interface AccessibleValue

All Known Implementing Classes:
javax.swing.AbstractButton.AccessibleAbstractButton, java.awt.Button.AccessibleAWTButton, java.awt.Checkbox.AccessibleAWTCheckbox, java.awt.CheckboxMenuItem.AccessibleAWTCheckboxMenuItem, java.awt.MenuItem.AccessibleAWTMenuItem, java.awt.Scrollbar.AccessibleAWTScrollBar, javax.swing.JInternalFrame.JDesktopIcon.AccessibleJDesktopIcon, javax.swing.JInternalFrame.AccessibleJInternalFrame, javax.swing.JProgressBar.AccessibleJProgressBar, javax.swing.JScrollBar.AccessibleJScrollBar, javax.swing.JSlider.AccessibleJSlider, javax.swing.JSplitPane.AccessibleJSplitPane

public interface AccessibleValue

Untamed:


Method Summary
 Number getCurrentAccessibleValue()
          Enabled: Get the value of this object as a Number.
 Number getMaximumAccessibleValue()
          Enabled: Get the maximum value of this object as a Number.
 Number getMinimumAccessibleValue()
          Enabled: Get the minimum value of this object as a Number.
 boolean setCurrentAccessibleValue(Number n)
          Enabled: Set the value of this object as a Number.
 

Method Detail

getCurrentAccessibleValue

public Number getCurrentAccessibleValue()
Enabled: Get the value of this object as a Number. If the value has not been set, the return value will be null.

Returns:
value of the object
See Also:
setCurrentAccessibleValue(java.lang.Number)

setCurrentAccessibleValue

public boolean setCurrentAccessibleValue(Number n)
Enabled: Set the value of this object as a Number.

Returns:
True if the value was set; else False
See Also:
getCurrentAccessibleValue()

getMinimumAccessibleValue

public Number getMinimumAccessibleValue()
Enabled: Get the minimum value of this object as a Number.

Returns:
Minimum value of the object; null if this object does not have a minimum value
See Also:
getMaximumAccessibleValue()

getMaximumAccessibleValue

public Number getMaximumAccessibleValue()
Enabled: Get the maximum value of this object as a Number.

Returns:
Maximum value of the object; null if this object does not have a maximum value
See Also:
getMinimumAccessibleValue()


comments?