Package org.eclipse.jst.jsf.validation.internal.el

Examples of org.eclipse.jst.jsf.validation.internal.el.IExpressionSemanticValidator


        final IValidationReporter  reporter = new ReporterAdapter();
        final ELExpressionValidator validator =
            new ELExpressionValidator(
                elContext, elText, symbolResolverFactory, reporter);
        validator.validateXMLNode();
        final IExpressionSemanticValidator semValidator = validator
                .getSemanticValidator();
        if (semValidator != null
                && semValidator.getExpressionType() instanceof ValueType)
        {
            return (ValueType) semValidator.getExpressionType();
        }
        return null;
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jst.jsf.validation.internal.el.IExpressionSemanticValidator

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.