Example: Class Entry
¥class Entry {
¥
¥  /* fields */
¥  String name;
¥  String address;
¥  String phone;
¥
¥  /* constructor */
¥  Entry(String n, String a, String p) {
¥    this.name = n;
¥    this.address = a;
¥    this.phone = p;
¥  }  
¥
¥  /* getters */
¥  String getName()    { return this.name; }
¥  String getAddress() { return this.address; }
¥  String getPhone()   { return this.phone; }
¥}