1 |
IDL is a language for defining what operations are available and how they should be invoked for each remote object.
-
An IDL definition defines types of objects, their attributes, the methods they export and the method parameters.
|
2 |
IDL supports Object-Oriented concepts such as encapsulation, inheritance and polymorphism.
|
3 |
Each language mapping of IDL should be the same for all ORB implementations.
|
4 |
The language mapping includes language-specific data types and procedure interfaces.
|
5 |
An IDL unit is called a module and contains a set of class interfaces containing attributes and methods (similar to Java interfaces with variables and methods.)
|