Se crei studenti di classe, probabilmente dovrai creare un metodo che restituisca il nome di studenti come questo
public String getName(){
return this.name;
}
e nella classe principale si crea oggetto studente in un array
o ArrayList
come questo:
Student [] students = new Student [size];
e quindi hai setName(String name)
e getName()
Quindi:
Crea DefaultListModel
aggiungi nomi al modello, quindi aggiungi modello all'elenco come questo
DefaultListModel model = new DefaultListModel ();
for(int i = 0; i< students.length; i++){
model.addElement(students[i].getName());
}
list.setModel(model);
Non l'ho testato, spero che tu abbia avuto l'idea.