Package org.apache.shale.tiger.register

Examples of org.apache.shale.tiger.register.FacesValidator


            } catch (Exception e) {
                throw new FacesException(e);
            }
        }

        FacesValidator val = (FacesValidator) clazz.getAnnotation(FacesValidator.class);
        if (val != null) {
            if (log().isTraceEnabled()) {
                log().trace("addValidator(" + val.value() + "," + clazz.getName() + ")");
            }
            application().addValidator(val.value(), clazz.getName());
        }

    }
View Full Code Here

TOP

Related Classes of org.apache.shale.tiger.register.FacesValidator

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.