The Activatable class defines methods for activatable objects. The activatable object need to override its methods to implement the activation and deactivation operations.
More...
|
boolean | isActive |
| Whether this activatable objec has been activated or not!
|
|
|
abstract | doActive () |
| Subclasses of Activatable should override this method to implement activation operation.
|
|
abstract | doDeactive () |
| Subclasses of Activatable should override this method to implement deactivation operation.
|
|
The Activatable class defines methods for activatable objects. The activatable object need to override its methods to implement the activation and deactivation operations.
- See also
- AnnotRender.getComponent
-
PDFViewer.activateElement
◆ active()
Sets isActive to true
and calls doActive method.
- Returns
- void
◆ unActive()
Activatable::unActive |
( |
| ) |
|
|
inline |
Sets isActive to false
and calls doDeactive method.
- Returns
- void