320321322323324325326327328329330
public Object next () { int x = this.read2 (0); int y = this.read2 (2); int width = this.read2 (4); int height = this.read2 (6); Rectangle rectangle = new Rectangle (x, y, width, height); inc (8); return rectangle; } };