Copyright (c) Qusay H. Mahmoud
23
IDL Structure (Attributes)
l
They describe the variables (properties) of an
interface
l
An attribute can be
readonly
or read-write
l
interface Account {
l
attribute string name;
l
readonly attribute string sin;
l
readonly attribute long long accountNumber;
l
};