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 "EDT:EGL Language conversion"

Line 1: Line 1:
 
EGL language conversion consideration from RBD/EGLCE  
 
EGL language conversion consideration from RBD/EGLCE  
  
*[[EDT:EGL Language Part Types]]  
+
*[[EDT:EGL Language Part Types]]
 +
 
 
{| width="800" cellspacing="1" cellpadding="1" border="1"
 
{| width="800" cellspacing="1" cellpadding="1" border="1"
 
|-
 
|-
Line 7: Line 8:
 
| EDT
 
| EDT
 
|-
 
|-
| DataItem,  
+
| DataItem,<br>Stand alone (top level) function <br>
Stand alone function (top level function)
+
| Not supported right now<br>
Datatable,
+
Structured Record
+
Form
+
| Not supported
+
 
|-
 
|-
| interval
+
| Datatable,<br>Structured Record,<br>Form,<br>FormGroup <br>
| Not Supported, no replacement
+
| Not supported<br>
|-
+
| Money, num, bin<br>  
+
| use Decimal<br>
+
 
|}
 
|}
 +
 
*[[EDT:EGL Language Function Parameters]]  
 
*[[EDT:EGL Language Function Parameters]]  
 
*[[EDT:EGL Language Primitive Types]]
 
*[[EDT:EGL Language Primitive Types]]
Line 32: Line 27:
 
|-
 
|-
 
| interval  
 
| interval  
| Not Supported, no replacement
+
| Not Supported right now, no replacement
 
|-
 
|-
 
| Money, num, bin<br>  
 
| Money, num, bin<br>  

Revision as of 17:03, 26 August 2011

EGL language conversion consideration from RBD/EGLCE

RBD/EGL CE EDT
DataItem,
Stand alone (top level) function
Not supported right now
Datatable,
Structured Record,
Form,
FormGroup
Not supported
RBD/EGL CE EDT
time replaced with timestamp
interval Not Supported right now, no replacement
Money, num, bin
use Decimal
RBD/EGL CE EDT
system libraries all needs to be fully qualified with library name
 i.e. sysLib, dateTimeLib, serviceLib, xmlLib...etc.
currentTimeStamp()
dateTimeLib.currentTimeStamp()



RBD/EGL CE EDT
matches have to use String matchesPattern() function instead
RBD/EGL CE EDT
basicLibrary no more basicLibrary
annotation on Library no annotation is supported on library
RuntimeException
no more RuntimeException, use AnyException
IndexOutOfBoundException
InvalidIndexException

Back to the top