Package carcel.customExceptions

Examples of carcel.customExceptions.UIValidateException


    public boolean validarDatos() throws UIValidateException{
        boolean salida = true;
      
      
        if (descripcion.getText().trim().isEmpty()) {
              throw new UIValidateException("La descripción del rol debe ser ingresada ");
        }
       
        return salida;
    }
View Full Code Here


   
    public boolean validarDatos() throws UIValidateException{
        boolean salida = true;
        if (duenioField.getText().trim().isEmpty()){
            salida =false;
            throw new UIValidateException("El nombre del Dueño no puede estar vacio.");
        }
        if (localidadField.getText().trim().isEmpty()){
            salida = false;
            throw new UIValidateException("La localidad de la propiedad que funcionará como celda no puede estar vacío");
        }
        if(direccionField.getText().trim().isEmpty()){
            salida = false;
            throw new UIValidateException("La dirección de la propiedad que funcionara como celda no puede estar vacio.");
        }       
        return salida;
    }
View Full Code Here

    protected boolean validarDatos() throws UIValidateException{
        boolean result = true;
       
        if (nroPlacaTextField.getText().isEmpty()) {
            result = false;
            throw new UIValidateException("No se seleccionó ningún Policia");           
        } else {
            try {
                Integer aux = Integer.valueOf(nroPlacaTextField.getText());
            } catch (NumberFormatException ex) {
                result = false;
                throw new UIValidateException("El nro de placa no es válido");
            }
        }
        if (fechaDateChooser.getDate() == null) {
            result = false;
            throw new UIValidateException("No se ingresó ninguna fecha");
        }
        if (pabellonesComboBox.getSelectedItem().toString() == "<Seleccionar Pabellon>"){
            result = false;
            throw new UIValidateException("No se seleccionó ningún Pabellon");
        }
        //Falta Validar los campos de la hora
        if (!horaEntradaField.getText().trim().isEmpty()) {
            try {
                Integer aux = Integer.valueOf(horaEntradaField.getText().trim().split(":")[0]);
                if (aux < 24 && aux >= 0) {
                    aux = Integer.valueOf(horaEntradaField.getText().trim().split(":")[1]);
                    if (aux > 59 || aux < 0) {
                        result = false;
                        throw new UIValidateException("Hora inválida");
                    }
                } else {
                    result = false;
                    throw new UIValidateException("Hora inválida");
                }    
            } catch (NumberFormatException ex){
                result = false;
                throw new UIValidateException("Hora Inválida");
            }           
        } else {
            result = false;
            throw new UIValidateException("La hora de ingreso no puede estar vacía");
        }
        if (!horaSalidaField.getText().trim().isEmpty()) {
            try {
                Integer aux = Integer.valueOf(horaSalidaField.getText().trim().split(":")[0]);
                if (aux < 24 && aux >= 0) {
                    aux = Integer.valueOf(horaSalidaField.getText().trim().split(":")[1]);
                    if (aux > 59 || aux < 0) {
                        result = false;
                        throw new UIValidateException("Hora inválida");
                    }
                } else {
                    result = false;
                    throw new UIValidateException("Hora inválida");
                }    
            } catch (NumberFormatException ex){
                result = false;
                throw new UIValidateException("Hora Inválida");
            }           
        }
       
        return result;
    }
View Full Code Here

   
    public boolean validarDatos() throws UIValidateException{
        boolean salida = true;
        if (comboBox.getSelectedItem().toString().equals("<Seleccionar Pabellon>")){
            salida =false;
            throw new UIValidateException("no se seleccionó ningun Pabellón");
        }
        if (nombreCeldaField.getText().trim().isEmpty()){
            salida =false;
            throw new UIValidateException("El nombre de la Celda no puede estar vacio.");
        }
        if(tamanioField.getText().trim().isEmpty()){
            salida = false;
            throw new UIValidateException("El tamaño de la celda no puede estar vacio.");
        }else{
            try{
                Long.valueOf(tamanioField.getText());
                if (Integer.valueOf(tamanioField.getText()) < 0)
                    throw new UIValidateException("El Tamaño dela celda no puede ser negativo");
            }catch (NumberFormatException exception){
                salida= false;
                throw new UIValidateException("El tamaño no es un numero valido.");
            }  
        }
        if (espacioTotalField.getText().trim().isEmpty()){
            salida = false;
            throw new UIValidateException("El espacio total no puede estar vacío");
        }else{
            try{
                Long.valueOf(espacioTotalField.getText());
                if (Integer.valueOf(espacioTotalField.getText()) < 0)
                    throw new UIValidateException("El espacio total no puede ser negativo");
                if (Integer.valueOf(tamanioField.getText()) / Integer.valueOf(espacioTotalField.getText()) < 3)
                    throw new UIValidateException("Se especificaron demasiados espacios para el tamaño de celda dado. Debe darse una relacion 1 a 3");
            }catch (NumberFormatException exception){
                salida= false;
                throw new UIValidateException("El espacio total no es un numero valido.");
            }  
        }
        return salida;
    }
View Full Code Here

    protected boolean validarDatos() throws UIValidateException{
        boolean result = true;

        if (comboBox.getSelectedItem().toString().equals("<Seleccionar Pabellon>")){
            result =false;
            throw new UIValidateException("no se seleccionó ningun Pabellón");
        }
        if (fechaDateChooser.getDate() == null) {
            result = false;
            throw new UIValidateException("No se ingresó ninguna fecha");
        }
        //Falta Validar los campos de la hora
        if (!horaIngresoField.getText().trim().isEmpty()) {
            try {
                Integer aux = Integer.valueOf(horaIngresoField.getText().trim().split(":")[0]);
                if (aux < 24 && aux >= 0) {
                    aux = Integer.valueOf(horaIngresoField.getText().trim().split(":")[1]);
                    if (aux > 59 || aux < 0) {
                        result = false;
                        throw new UIValidateException("Hora inválida");
                    }
                } else {
                    result = false;
                    throw new UIValidateException("Hora inválida");
                }
            } catch (NumberFormatException ex){
                result = false;
                throw new UIValidateException("Hora Inválida");
            }
        } else {
            result = false;
            throw new UIValidateException("La hora de ingreso no puede estar vacía");
        }
        if (!horaEgresoField.getText().trim().isEmpty()) {
            try {
                Integer aux = Integer.valueOf(horaEgresoField.getText().trim().split(":")[0]);
                if (aux < 24 && aux >= 0) {
                    aux = Integer.valueOf(horaEgresoField.getText().trim().split(":")[1]);
                    if (aux > 59 || aux < 0) {
                        result = false;
                        throw new UIValidateException("Hora inválida");
                    }
                } else {
                    result = false;
                    throw new UIValidateException("Hora inválida");
                }
            } catch (NumberFormatException ex){
                result = false;
                throw new UIValidateException("Hora Inválida");
            }
        } else {
            result = false;
            throw new UIValidateException("La hora de egreso no puede estar vacía");
        }
        return result;
    }
View Full Code Here

     */
    public boolean validarDatos() throws UIValidateException{
        boolean salida = true;
        if (nombreText.getText().trim().isEmpty()){
            salida =false;
            throw new UIValidateException("El nombre no puede estar vacio.");
        }
        if(apellidoText.getText().trim().isEmpty()){
            salida = false;
            throw new UIValidateException("El apellido no puede estar vacio.");
        }
        if (documentoText.getText().trim().isEmpty()){
        }else{
            try{
                Long nro = Long.valueOf(documentoText.getText());
               
            }catch (NumberFormatException exception){
                salida= false;
                throw new UIValidateException("El documento no es un numero valido.");
            }  
        }
        if (nacionalidadText.getText().trim().isEmpty()){
            salida = false;
            throw new UIValidateException("La nacionalidad no puede estar vacia.");
        }
        if (listaAsignada.getModel().getSize() <=0){
            salida = false;
            throw new UIValidateException("Debe elegir al menos un motivo de detencion.");
        }
        if (fotoLabel.getIcon() == null){
            salida = false;
            throw new UIValidateException("Falta cargar la foto");
        }
        if(huellaLabel.getIcon() == null){
            salida = false;
            throw new UIValidateException("Falta cargar la huella dactilar.");
        }
        return salida;
    }
View Full Code Here

    }

    public void validarDatos() throws UIValidateException{
       
        if ((passText.getText().trim().isEmpty()) && (userText.getText().trim().isEmpty())) {
            throw new UIValidateException("El usuario y el password no pueden estar vacio.");
        }
        if (userText.getText().trim().isEmpty()){
           
            throw new UIValidateException("El usuario no puede estar vacio.");
        }
        if(passText.getText().trim().isEmpty()){
           
            throw new UIValidateException("El password no puede estar vacio.");
        }
       
    }
View Full Code Here

        }
       
    }
   
    public void validarDatos(String user, String pass) throws UIValidateException{
         throw new UIValidateException("Los datos ingresados no corresponden a un usuario válido.");
     }
View Full Code Here

    protected javax.swing.JLabel presoLabel;
    // End of variables declaration//GEN-END:variables

    public String getDetalle() throws UIValidateException {
        if (detalleText == null || detalleText.getText().trim().isEmpty()){
            throw new UIValidateException("El detalle no puede estar vacio");
        }else{
            return detalleText.getText();
        }
    }
View Full Code Here

    protected boolean validarDatos() throws UIValidateException{
        boolean result = true;
       
        if (nroPresoField.getText().isEmpty()) {
            result = false;
            throw new UIValidateException("No se seleccionó ningún Preso");           
        }
        if (fechaDateChooser.getDate() == null) {
            result = false;
            throw new UIValidateException("No se ingresó ninguna fecha");
        }
        if (apellidoField.getText().isEmpty()) {
            result = false;
            throw new UIValidateException("No se completaron todos los datos de la visita");
        }
        if (nombreField.getText().isEmpty()) {
            result = false;
            throw new UIValidateException("No se completaron todos los datos de la visita");
        }
        //Falta Validar los campos de la hora
        if (!horaEntradaField.getText().trim().isEmpty()) {
            try {
                Integer aux = Integer.valueOf(horaEntradaField.getText().trim().split(":")[0]);
                if (aux < 24 && aux >= 0) {
                    aux = Integer.valueOf(horaEntradaField.getText().trim().split(":")[1]);
                    if (aux > 59 || aux < 0) {
                        result = false;
                        throw new UIValidateException("Hora inválida");
                    }
                } else {
                    result = false;
                    throw new UIValidateException("Hora inválida");
                }    
            } catch (NumberFormatException ex){
                result = false;
                throw new UIValidateException("Hora Inválida");
            }           
        } else {
            result = false;
            throw new UIValidateException("La hora de ingreso no puede estar vacía");
        }
        if (!horaSalidaField.getText().trim().isEmpty()) {
            try {
                Integer aux = Integer.valueOf(horaSalidaField.getText().trim().split(":")[0]);
                if (aux < 24 && aux >= 0) {
                    aux = Integer.valueOf(horaSalidaField.getText().trim().split(":")[1]);
                    if (aux > 59 || aux < 0) {
                        result = false;
                        throw new UIValidateException("Hora inválida");
                    }
                } else {
                    result = false;
                    throw new UIValidateException("Hora inválida");
                }    
            } catch (NumberFormatException ex){
                result = false;
                throw new UIValidateException("Hora Inválida");
            }           
        } else {
            result = false;
            throw new UIValidateException("La hora de egreso no puede estar vacía");
        }
       
        return result;
    }
View Full Code Here

TOP

Related Classes of carcel.customExceptions.UIValidateException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.