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