Skip to main content

Notice: This Wiki is now read only and edits are no longer 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:Working with custom types"

(Handler)
(Interface)
Line 14: Line 14:
 
= <br> Interface  =
 
= <br> Interface  =
  
 +
Here is an example Interface type, which is based on the service shown in [[#Service||Service]]:
 
Interface IMyService
 
Interface IMyService
 
   Function calculate(theList INT[] IN)  
 
   Function calculate(theList INT[] IN)  

Revision as of 17:04, 13 February 2012

Your custom types are based on these EGL classifiers:

Delegate, Enumeration, ExternalType, Handler,
Interface, Library, Program, Record, Service

Delegate


Enumeration


ExternalType


Handler


Interface

Here is an example Interface type, which is based on the service shown in |Service: Interface IMyService

  Function calculate(theList INT[] IN) 
           returns(BIN (4,2));
  // other function prototypes are here

end


Library


Program


Record


Service

Service MyService
 
   // variables and constants can be here
 
   function calculate(myScore Int[]) returns (Decimal (4,2)) 
 
      numberOfScores, i, mySum Int;
      numberOfScores = myScore.getSize();
 
      for (i from 1 to numberOfScores by 1)
         mySum = myScore[i] + mySum;	       
      end
 
      return(mySum/numberOfScores);
   end
 
   // other functions are here
 
end




Code snippets main page

Back to the top