Package de.tsl2.nano.action
Interface IActivable
- All Superinterfaces:
Serializable
Implementors of this interface provide the possibility to check if a component should be active or not. will be used
as callback by the tsl2nano framework.
- Version:
- $Revision$
- Author:
- ts 06.03.2009
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final IActivableisActive()will return always truestatic final IActivableisActive()will return always false -
Method Summary
Modifier and TypeMethodDescriptionbooleanisActive()used as callback by framework to check for activation/enabling. may be called more than one time for refreshings.
-
Field Details
-
ACTIVE
isActive()will return always true -
INACTIVE
isActive()will return always false
-
-
Method Details
-
isActive
boolean isActive()used as callback by framework to check for activation/enabling. may be called more than one time for refreshings. implementation should be fast - please don't call remote services.- Returns:
- true if the component should be activated (enabled and visible).
-