public ConsPacientesInternalFrame() {
initComponents();
gestorpacientesControl = new controlador.GestorPacienteControl(this);
String titulosTabla[] = ("identificacion","Nombres","Apellidos","FechaNac","Sexo");// esta linea tiene el error
tabla = new DefaultTableModel(null,titulosTabla);
ResultadosTbl.setModel(tabla);
AceptarBtn.addActionListener(gestorpacientesControl);
}
The line
String titulosTabla[] = ("identificacion","Nombres","Apellidos","FechaNac","Sexo");
Shows an error indicating that:
String can not be converted to String []