amigo creo que mi error pudiera estar aqui..
en la parte de esta linea
Código Javascript
:
Ver originalif(e.GuardarEmpleado(v.txtCedula.getText(),v.txtNombre.getText(),v.txtApellido.getText(),(ButtonModel) v.cboTipo,v.txtTelefono.getText(),v.txtTalla.getText())){
(ButtonModel) v.cboTipo esto es lo que no se como colocarlo, porque mi opcion de sexo es un JradioButton y no se como expresarlo en esa linea???
Código Javascript
:
Ver originalif(x.getSource()==v.btnAceptar){
e= new Empleado(v.txtCedula.getText(),v.txtNombre.getText(),v.txtApellido.getText(),Sex,v.txtTelefono.getText(),v.txtTalla.getText());
if(e.GuardarEmpleado(v.txtCedula.getText(),v.txtNombre.getText(),v.txtApellido.getText(),(ButtonModel) v.cboTipo,v.txtTelefono.getText(),v.txtTalla.getText())){
v.rbFemenino.setSelected(false);
v.rbMasculino.setSelected(false);
System.out.println("Registrar");
v.txtCedula.setEditable(true);
v.txtNombre.setText("");
v.txtNombre.setEditable(true);
v.txtApellido.setText("");
v.txtApellido.setEditable(true);
v.txtTelefono.setText("");
v.txtTelefono.setEditable(true);
v.txtTalla.setText("");
v.txtTalla.setEditable(true);
v.rbFemenino.setEnabled(true);
v.rbMasculino.setEnabled(true);
v.btnAceptar.setEnabled(true);
JOptionPane.showMessageDialog(null,"Registrado Satisfactoriamente ");
}else
JOptionPane.showMessageDialog(null,"No se Puede registrar el empleado ");
}