April 05
Prof. Ismael H. F. Santos -  ismael@tecgraf.puc-rio.br                                                          2
Criando um Modelo
nclass ListaDeNomes implements ListModel {
n  private String[] nomes;
n  ListaDeNomes(String[] nomes) {
n    this.nomes = nomes;
n  }
n  public int getSize() {
n    return nomes.length;
n  }
n  public Object getElementAt(int index) {
n    return nomes[index];
n  }
n  public void addListDataListener(ListDataListener l) {}
n  public void removeListDataListener(ListDataListener l) {}
n}