コード例 #1
0
 public void setValue(OgnlContext context, Object rootObject, Object value) throws OgnlException {
   Ognl.setValue(getExpression(), context, rootObject, value);
 }
コード例 #2
0
 public Object getValue(OgnlContext context, Object rootObject) throws OgnlException {
   return Ognl.getValue(getExpression(), context, rootObject);
 }
コード例 #3
0
 public Object evaluate(OgnlContext ctx, OgnlRootObject rootObject) throws OgnlException {
   return Ognl.getValue(getExpression(), ctx, rootObject);
 }
コード例 #4
0
 public OgnlExpression(String expressionString) throws OgnlException {
   super();
   expression = Ognl.parseExpression(expressionString);
 }