Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/Concepts/Exec Methods"

(New page: {{ScoutPage|cat=Concepts}} == Description == Exec Method are present in Page, Form, Fields, Actions... The abstract class contains a default implementation that can be overridden in the c...)
 
(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{ScoutPage|cat=Concepts}}
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
 
+
== Description ==
+
Exec Method are present in Page, Form, Fields, Actions... The abstract class contains a default implementation that can be overridden in the concrete child class.
+
 
+
  @Override
+
  protected ... execXxxxxxx(...) throws ProcessingException{
+
    //specific logic here
+
  }
+
 
+
The scout framework call them when the event they represent occurs (value changed, form is validating, ...) These methods provide to the scout developer a way to add the business logic to the different elements: control that a value is in a specific range, disable an action if some conditions are not meet...
+
 
+
== See Also ==
+
 
+
* {{ScoutLink|Concepts|GetConfigured Methods|getConfiguredXxxxxx() Methods}}
+
* {{ScoutLink|SDK|Object Properties View|Object Properties View}}
+

Latest revision as of 04:26, 14 March 2024

The Scout documentation has been moved to https://eclipsescout.github.io/.

Back to the top