21/04/2013, 19:30
|
| | | Fecha de Ingreso: octubre-2012 Ubicación: Santiago
Mensajes: 417
Antigüedad: 12 años, 3 meses Puntos: 36 | |
Respuesta: ¿Cómo hacer funcionar dos JTable? for(String s : d.getMateriasdeldocente()){
//funcion auxiliar para buscar materia
Materia m = buscarMateria(s);
Object[] fila = new Object[3];
fila[0] = m.getCodigomateria();
fila[1] = m.getNombremateria();
fila[2] = m.getCreditos();
model.addRow(fila);
}
tabla.setModel(model);
Saludos |