Package org.jboss.el

Examples of org.jboss.el.ValueExpressionLiteral


        private final VariableMapper orig;
       
        public ClosureVariableMapper(VariableMapper map, String var, Object value) {
            this.orig = map;
            this.var = var;
            this.value = new ValueExpressionLiteral(value, Object.class);
        }
View Full Code Here


    private final VariableMapper orig;
   
    public ClosureVariableMapper(VariableMapper map, String var, Object value) {
      this.orig = map;
      this.var = var;
      this.value = new ValueExpressionLiteral(value, Object.class);
    }
View Full Code Here

TOP

Related Classes of org.jboss.el.ValueExpressionLiteral

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.