...
2.3.1. DataDefinitionService
TODOThis service provides both information about entities model and access to database operations.
2.3.2. TranslationService
TODOService used to execute translation to users language.
2.3.3. SecurityService
TODOThis service allow you to access informations about current user.
3. custom methods
Anchor | ||||
---|---|---|---|---|
|
...
View listeners are methods that is executed when specified event is fired. View listener method has structure:
Code Block |
---|
public void viewListenerMethodName(final ViewDefinitionState state, final ComponentState componentState, final String[] args) {
// VIEW LISTENER BODY
}
|
...