Ayuda con jFrame
Hola Buenas, espero me puedan ayudar estoy tratando de utilizar un jTable o un JList dentro de un Jframe, aquí esta algo de mi código:
String String[] texto="";
DefaultListModel model=new DefaultListModel();
jList1.setModel(model);
int i=-1;
for(Proceso p:Listos()){
i++;
texto=p.getId();
}
model.addElement(texto);