Package org.apache.myfaces.view.facelets

Examples of org.apache.myfaces.view.facelets.AbstractFaceletContext.pushExcludedValidatorIdToStack()


            {
                // the validator is disabled --> add its id to the exclusion stack
                boolean validatorIdAvailable = validatorId != null && !"".equals(validatorId);
                if (validatorIdAvailable)
                {
                    abstractCtx.pushExcludedValidatorIdToStack(validatorId);
                }
                _delegate.getValidatorConfig().getNextHandler().apply(ctx, parent);
                if (validatorIdAvailable)
                {
                    abstractCtx.popExcludedValidatorIdToStack();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.