Copyright (c) Qusay H. Mahmoud
15
Advanced IDL: Arrays
lIDL provides multidimensional fixed-size arrays
lThe array size is fixed at compile time
lIDL arrays map directly into Java arrays
lExample:
linterface Customer {
l   attribute string address[4]; // 1-D array
l   attribute short table[5][7];   // 2-D array
l}