package code4;
public class TestBubblePersistor implements Persistor {

    public void executeSave(String info, int id) {
	System.err.println("bubble persistor bubble saving info: " + info + " id: " + id);
    }
	
    public String executeLoad(int id) {
	System.err.println("bubble persistor bubble loading id: " + id);
	return "bubble persistor bubble loading id: " + id;
    }
}
