import java.util.ArrayList; class Washer { ArrayList contents; Washer() { this.contents = new ArrayList(); } void load(Garment g) { this.contents.add(g); } void pressStartButton() { for (int i=0; i unload() { ArrayList stuff = this.contents; this.contents = new ArrayList(); return stuff; } }