Recapito.java
Created with JBuilder
class Recapito {
  public static final int INDIRIZZO = 0;
  public static final int E_MAIL = 1;
  public static final int TELEFONO = 2;
  public static final int CELLULARE = 3;
  public static final int FAX = 4;

  // Attributi
  private int    tipologia;
  private String dati;

  // Costruttore
  public Recapito(int t, String d) {
    tipologia = t;
    dati = d;
  }

  // Metodi di restituzione
  public int restituisciTipologia() {
    return tipologia;
  }
  public String restituisciDati() {
    return dati;
  }

}

Recapito.java
Created with JBuilder