/* This file has been produced on Sat Apr 02 2005 at 12:30:25.399 */ import java.util.*; public class Customer { private int code; private String description; public int getCode() { return this.code; } public void setCode(int code) { this.code = code; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } }