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/Lookup Service"

(add classes)
(description phrase, idea for the description.)
Line 1: Line 1:
 
{{ScoutPage|cat=Concepts}}
 
{{ScoutPage|cat=Concepts}}
  
<TODO: 1 phrase describing the concept>
+
A lookup Service executes server-side the query contained in a {{ScoutLink|Concepts|LookupCall|LookupCall}}
  
 
* implements: {{ScoutJavadoc|ILookupService|I}}
 
* implements: {{ScoutJavadoc|ILookupService|I}}
Line 11: Line 11:
 
Different type of queries (get by key, by text...)
 
Different type of queries (get by key, by text...)
  
 +
Functions:
 +
* getDataByKey(LookupCall call)
 +
* getDataByText(LookupCall call)
 +
* getDataByAll(LookupCall call)
 +
* getDataByRec(LookupCall call)
  
 +
They return an array of {{ScoutLink|Concepts|LookupRow|LookupRow}}
 +
 +
The {{ScoutLink|Concepts|LookupCall|call}} is a parameter of these functions: it is possible to cast the call to the specific LookupCall in oder to access to some variables of the call.
  
  

Revision as of 16:32, 9 November 2010

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

A lookup Service executes server-side the query contained in a The Scout documentation has been moved to https://eclipsescout.github.io/.

Description

Note.png
TODO
Add a description


Different type of queries (get by key, by text...)

Functions:

  • getDataByKey(LookupCall call)
  • getDataByText(LookupCall call)
  • getDataByAll(LookupCall call)
  • getDataByRec(LookupCall call)

They return an array of The Scout documentation has been moved to https://eclipsescout.github.io/.

The The Scout documentation has been moved to https://eclipsescout.github.io/. is a parameter of these functions: it is possible to cast the call to the specific LookupCall in oder to access to some variables of the call.


See Also

Back to the top