25 public VMFInt32(DataInputStream in)
throws IOException
27 values =
new int[in.readInt()];
28 for (
int i = 0; i < values.length; i++) {
29 values[i] = in.readInt();
33 public void write(DataOutputStream out)
throws IOException
35 out.writeInt(values.length);
36 for (
int i = 0; i < values.length; i++) {
37 out.writeInt(values[i]);
41 public byte getType() {
return MFINT32; }