help!!!! IDL defination fo java.util.Vector!

how I define Vector in IDL? Any reply is appreciated.
[74 byte] By [yuyabin] at [2007-9-26 8:28:17]
# 1
Below is code which creates a return type sequence in idl which can vector or array anything you wish. typedef sequence<string> example;
anishji at 2007-7-1 19:06:48 > top of Java-index,Core,Core APIs...
# 2
Below is code which creates a return type sequence in idl which can vector or array anything you wish. typedef sequence<string> example;
anishji at 2007-7-1 19:06:48 > top of Java-index,Core,Core APIs...
# 3

> Below is code which creates a return type sequence in

> idl which can vector or array anything you wish.

>

> typedef sequence<string> example;

>

>

The definition above applies only to string, however it

could be any object type you can defnine in IDL

Example:

struct Employee

{

string firstName;

string lastName;

string address;

string city;

string state;

string phone;

floatsalary;

}; // End struct Employee

typedef sequence<Employee> EmployeeList;

Employee list would be an array or Vector of items of type Employee

bougnonkipre at 2007-7-1 19:06:48 > top of Java-index,Core,Core APIs...
# 4
typedef sequence<any> Vector;
JimJam at 2007-7-1 19:06:48 > top of Java-index,Core,Core APIs...