public void nuevo() {
   vistaMaestro vista = new vistaMaestro(this);
   vista = (vistaMaestro) this.getSession().getVista();
   vista.setDto(new Maestro());
   this.crearMaestroInicio(vista);
   this.cargarCmbShort(vista.getCmbshrnivel(), vista.getCmbdtomaestro());
   this.cargarCmbShort(vista.getCmbshrpos_rel(), vista.getCmbdtomaestro());
   if (vista.getCentro2().isVisible()) {
     this.cambiarVista();
   }
   vista.limpiarError();
   vista.getChkbolactivo().setSelected(true);
 }
 public controladorMaestro(String param) {
   vistaMaestro vista = new vistaMaestro(this);
   Maestro dto = new Maestro();
   this.iniciarSesion(vista, dto);
   if (param != "") {
     String[] params = param.split(",");
     this.tipoMaestro = params[0].trim();
     vista.getLbldtomaestro().setText(params[1].trim());
     vista.setTitle(params[2].trim());
   }
   // this.crearMaestroInicio(vista);
   this.actualizarVista();
   if (this.getSession().getListaDto().size() == 0) {
     vista.getCentro2().setVisible(false);
     vista.getCentro().setVisible(true);
   } else {
     this.cambiarVista();
   }
   this.getSession().getVista().getSimpleGrid().addMouseListener(this);
 }