RE: Some requirements

Sanjiva:

>In IDL if one says:
>
>    interface foo {
>        attribute string x;
>    }
>
>That means the generated language interface will have methods getx()
>and setx(.). Thus, IDL does tell you precisely what methods are
>available to access the state.

No. It entirely depends on the IDL to language binding. For example if this 
piece of IDL was bound to a C# implementation then it would most likely bind 
to a property, not get/set methods (as it would in Java).

Jim

Received on Tuesday, 17 June 2003 06:46:06 UTC