EchoPoint API - 3.0.0b5
App Webcontainer

echopoint.able
Interface AccessKeyable

All Superinterfaces:
Delegateable
All Known Implementing Classes:
AbleComponent, CarouselContainer, ContainerEx, SlidingMenu, TooltipContainer

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.


Field Summary
static String PROPERTY_ACCESS_KEY
           
 
Method Summary
 String getAccessKey()
          Returns the access key in use.
 void setAccessKey(String newValue)
          Sets the access key to be used.
 
Methods inherited from interface echopoint.able.Delegateable
getRenderProperty, getRenderProperty
 

Field Detail

PROPERTY_ACCESS_KEY

static final String PROPERTY_ACCESS_KEY
See Also:
Constant Field Values
Method Detail

getAccessKey

String getAccessKey()
Returns the access key in use.

Returns:
the access key in use.

setAccessKey

void setAccessKey(String newValue)
Sets the access key to be used.

Parameters:
newValue - - the access key to be used.

EchoPoint API - 3.0.0b5
App Webcontainer