In my .ice file I have the following line:
However the variable that gets generated is:Code:["java:type:java.util.Vector<Disk>"] sequence<Disk> DisksDef;
Instead of creating a Vector it creates a List interface. Am I putting in the wrong metadata tag?Code:public java.util.List<Disk> Disks;
I realize that Vector implements the List interface. However, having to change from Vector to List will take some effort. I would prefer to keep it a Vector.

Reply With Quote