コード例 #1
0
 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);
 }
コード例 #2
0
 public void buscar() {
   vistaMaestro vista = new vistaMaestro(this);
   vista = (vistaMaestro) this.getSession().getVista();
   String str = vista.getTxtlngid().getText().trim();
   if (str.isEmpty() || str.length() == 0 || str.contentEquals("0")) {
     vista.mensageDialogo(
         "error",
         "Valor de búsqueda vacío o inválido.\nIntroduzca un número mayor que cero.",
         vista.getTitle());
   } else {
     modeloMaestro modelo = new modeloMaestro();
     Maestro dto = new Maestro();
     dto = modelo.buscarMaestro(new Maestro(), "lngid", str);
     vista.setDto(dto);
   }
 }