public void save() throws IOException { if (house != null) { persist.save(house, application.openFileOutput("house.xml", Application.MODE_PRIVATE)); } }
public House retrieve() throws IOException { if (house == null) { house = persist.retrieve(application.openFileInput("house.xml")); } return house; }