echopointng.able
Interface AccessKeyable
- All Superinterfaces:
- Delegateable
- All Known Implementing Classes:
- AbleComponent, BalloonHelp, ButtonEx, Calculator, CalculatorField, ColorChooser, ComboBox, ContainerEx, DateChooser, DateField, DefaultTabModel.TabButton, DropDown, EditableLabelEx, ExpandableSection, GroupBox, ImageIcon, ImageMap, LabelEx, ListSection, Menu, MenuBar, MenuButton, MenuItem, PopUp, ProgressBar, PushButton, Slider, Strut, TabbedPane, TemplatePanel, TitleBar, Tree
public interface AccessKeyable
- extends Delegateable
The AccessKeyable interface is used to set a access key for a
given component. While most clients only support one access key and hence the
value could have been a 'char', AccessKeyable also supports a null access key
(ie no access key) and hence java.lang.String is used as the access key
value.
|
Method Summary |
java.lang.String |
getAccessKey()
Returns the access key in use. |
void |
setAccessKey(java.lang.String newValue)
Sets the access key to be used. |
PROPERTY_ACCESS_KEY
static final java.lang.String PROPERTY_ACCESS_KEY
- See Also:
- Constant Field Values
getAccessKey
java.lang.String getAccessKey()
- Returns the access key in use.
- Returns:
- the access key in use.
setAccessKey
void setAccessKey(java.lang.String newValue)
- Sets the access key to be used.
- Parameters:
newValue - -
the access key to be used.