567568569570571572573574575576577
public void readFields(DataInput in) throws IOException { int len = in.readInt(); images = new ArrayList<RemoteImage>(len); for (int i = 0; i < len; i++) { RemoteImage rel = new RemoteImage(); rel.readFields(in); images.add(rel); } } }