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 Part Types"

Line 3: Line 3:
 
== Part Types (Table 1)  ==
 
== Part Types (Table 1)  ==
  
{| cellspacing="1" cellpadding="1" border="1" style="width: 504px; height: 754px"
+
{| cellspacing="1" cellpadding="1" border="1" style="width: 504px; height: 754px;"
 
|-
 
|-
 
| bgcolor="#999999" align="center" | '''''Part Types'''''  
 
| bgcolor="#999999" align="center" | '''''Part Types'''''  
Line 12: Line 12:
 
| bgcolor="#cccccc" | ''DataItem<sup>1</sup>''  
 
| bgcolor="#cccccc" | ''DataItem<sup>1</sup>''  
 
| <br>2d  
 
| <br>2d  
| <span style="text-decoration: underline">[https://bugs.eclipse.org/bugs/show_bug.cgi?id=352111 JS: DataItem]</span><br>  
+
| <span style="text-decoration: underline;">[https://bugs.eclipse.org/bugs/show_bug.cgi?id=352111 JS: DataItem]</span>2d<br>  
 
| 2d<br>
 
| 2d<br>
 
|-
 
|-
Line 18: Line 18:
 
| <br>done  
 
| <br>done  
 
|  
 
|  
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=352116 JS: Function overloading]<br>  
+
[https://bugs.eclipse.org/bugs/show_bug.cgi?id=352116 JS: Function overloading]4d<br>  
  
 
| done<br>
 
| done<br>
Line 31: Line 31:
 
| bgcolor="#cccccc" | ''Delegate<sup>2</sup>''  
 
| bgcolor="#cccccc" | ''Delegate<sup>2</sup>''  
 
| <br>done  
 
| <br>done  
| <span style="text-decoration: underline">[https://bugs.eclipse.org/bugs/show_bug.cgi?id=352036 JS:Delegates]</span>2d<br>  
+
| <span style="text-decoration: underline;">[https://bugs.eclipse.org/bugs/show_bug.cgi?id=352036 JS:Delegates]</span>2d<br>  
 
| 1d<br>
 
| 1d<br>
 
|-
 
|-
Line 113: Line 113:
 
'''Notes on Table 1'''<br>  
 
'''Notes on Table 1'''<br>  
  
#<span style="background: rgb(255,165,0)">In RBD a DataItem can only be used for primitive types. In EDT it can be used for any type.</span>  
+
#<span style="background: none repeat scroll 0% 0% rgb(255, 165, 0);">In RBD a DataItem can only be used for primitive types. In EDT it can be used for any type.</span>  
 
#See also Table 2: Function Parameters.  
 
#See also Table 2: Function Parameters.  
#Interfaces can be implemented by services <span style="background: rgb(255,165,0)">and handlers (every kind of "logic part" which can be instantiated)</span>.  
+
#Interfaces can be implemented by services <span style="background: none repeat scroll 0% 0% rgb(255, 165, 0);">and handlers (every kind of "logic part" which can be instantiated)</span>.  
#<span style="background: rgb(255,165,0)">There are no called programs in EDT. Use libraries for "local calls" and services for "remote calls".</span>  
+
#<span style="background: none repeat scroll 0% 0% rgb(255, 165, 0);">There are no called programs in EDT. Use libraries for "local calls" and services for "remote calls".</span>  
#<span style="background: rgb(255,165,0)">We intend to support function overloading in all implementations, even JavaScript.</span>  
+
#<span style="background: none repeat scroll 0% 0% rgb(255, 165, 0);">We intend to support function overloading in all implementations, even JavaScript.</span>  
#Records (including structured records) are value types, so record variables may be declared with a question mark following the name of the type to indicate that they're nullable. <span style="background: rgb(255,165,0)">Nullability means that a variable may really be null. It's not an "I'm null" flag like in RBD. A NullValueException will be thrown if you try to access a field or function of a null variable, even a record. A NullValueException will be thrown if a null variable is an operand to a math operator, an array access, a substring access, a comparison, or a bitwise operator.</span> The string concatenation operators will work the same as in RBD with respect to nulls. &nbsp;:: treats null as the empty string, and&nbsp;?: results in null if either operand is null. <span style="background: rgb(255,165,0)">A question mark won't be allowed on the second operand of the AS and ISA operators (the name of the type).</span>  
+
#Records (including structured records) are value types, so record variables may be declared with a question mark following the name of the type to indicate that they're nullable. <span style="background: none repeat scroll 0% 0% rgb(255, 165, 0);">Nullability means that a variable may really be null. It's not an "I'm null" flag like in RBD. A NullValueException will be thrown if you try to access a field or function of a null variable, even a record. A NullValueException will be thrown if a null variable is an operand to a math operator, an array access, a substring access, a comparison, or a bitwise operator.</span> The string concatenation operators will work the same as in RBD with respect to nulls. &nbsp;:: treats null as the empty string, and&nbsp;?: results in null if either operand is null. <span style="background: none repeat scroll 0% 0% rgb(255, 165, 0);">A question mark won't be allowed on the second operand of the AS and ISA operators (the name of the type).</span>  
 
#<span>The deployment descriptor will ONLY be used for deployment. Neither the Java or JavaScript generator will generate the&nbsp;deployment descriptor.</span>
 
#<span>The deployment descriptor will ONLY be used for deployment. Neither the Java or JavaScript generator will generate the&nbsp;deployment descriptor.</span>

Revision as of 16:21, 21 July 2011

Please see the parent of this page, EDT:EGL Language.

Part Types (Table 1)

Part Types Core JavaScript Java
DataItem1
2d
JS: DataItem2d
2d
Function2, 5
done

JS: Function overloading4d

done
Top-level function2, 5
done

JS:Top-level functions 1d

1d
Delegate2
done
JS:Delegates2d
1d
Record6

done

JS:Record1d

done
Structured Record6

5d 
N/S N/S
ExternalType

done
JS:ExternalType1d
done
Handler

1d
JS:Handler1d
1d
Library

done
done
done
Service

1d
1d
1d
Interface3

done
1d 1d
Enumeration

1d
JS: Enumeration
1d
Program4

done
N/S
1d
Array

done
JS: Array1d
done
Deployment Descriptor7

done
RUIhandlers

REST RPC

SOAP

DataTable

done
N/S N/S
Form

1d
N/S N/S
FormGroup

2d
N/S N/S

Notes on Table 1

  1. In RBD a DataItem can only be used for primitive types. In EDT it can be used for any type.
  2. See also Table 2: Function Parameters.
  3. Interfaces can be implemented by services and handlers (every kind of "logic part" which can be instantiated).
  4. There are no called programs in EDT. Use libraries for "local calls" and services for "remote calls".
  5. We intend to support function overloading in all implementations, even JavaScript.
  6. Records (including structured records) are value types, so record variables may be declared with a question mark following the name of the type to indicate that they're nullable. Nullability means that a variable may really be null. It's not an "I'm null" flag like in RBD. A NullValueException will be thrown if you try to access a field or function of a null variable, even a record. A NullValueException will be thrown if a null variable is an operand to a math operator, an array access, a substring access, a comparison, or a bitwise operator. The string concatenation operators will work the same as in RBD with respect to nulls.  :: treats null as the empty string, and ?: results in null if either operand is null. A question mark won't be allowed on the second operand of the AS and ISA operators (the name of the type).
  7. The deployment descriptor will ONLY be used for deployment. Neither the Java or JavaScript generator will generate the deployment descriptor.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.