/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package nl.marcenschede.tests; /** * * @author marc */ class Customer { private int id; private String name; private String city; private String phone; private int code; public Customer(String name, String city, String phone, int code) { this.id = 0; this.name = name; this.city = city; this.phone = phone; this.code = code; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getCity() { return city; } public void setCity(String city) { this.city = city; } public int getCode() { return code; } public void setCode(int code) { this.code = code; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPhone() { return phone; } public void setPhone(String phone) { this.phone = phone; } @Override public String toString() { return "Code=" + String.valueOf(id) + ",name=" + name + ",city=" + city + ",phone=" + phone + ",code=" + String.valueOf(code); } }