1 17 package org.apache.jasper.el; 18 19 import javax.el.ELContext; 20 import javax.servlet.jsp.el.ELException ; 21 import javax.servlet.jsp.el.VariableResolver ; 22 23 public final class VariableResolverImpl implements VariableResolver { 24 25 private final ELContext ctx; 26 27 public VariableResolverImpl(ELContext ctx) { 28 this.ctx = ctx; 29 } 30 31 public Object resolveVariable(String pName) throws ELException { 32 return this.ctx.getELResolver().getValue(this.ctx, null, pName); 33 } 34 35 } 36 | Popular Tags |