/src/main/java/com/googlecode/struts2yuiplugin/components/OGNLEvaluator.java
http://struts2yuiplugin.googlecode.com/ · Java · 18 lines · 4 code · 2 blank · 12 comment · 0 complexity · 4f5dd8b8543459e215cb0406cf605482 MD5 · raw file
- package com.googlecode.struts2yuiplugin.components;
-
- /**
- * Simplified interface to evaluate an OGNL expression
- *
- * The purpose at the moment is to allow the AjaxBeanSupport to call-back into the expression evaluation
- * currenly embedded within Component
- */
- public interface OGNLEvaluator {
-
- /**
- * Evaluates the OGNL expression within a context
- *
- * @param expr OGNL expression.
- * @return the String value found.
- */
- String evaluateExpression(String expr);
- }