vb@0: package Bla; vb@0: vb@0: class Customer { vb@0: // attribute id vb@0: vb@0: public int getId() { vb@0: return id; vb@0: } vb@0: vb@0: public void setId(int value) { vb@0: id = value; vb@0: } vb@0: vb@0: private int id; vb@0: vb@0: // attribute name vb@0: vb@0: public String getName() { vb@0: return name; vb@0: } vb@0: vb@0: public void setName(String value) { vb@0: name = value; vb@0: } vb@0: vb@0: private String name; vb@0: }