1 15 package org.apache.tapestry.services; 16 17 23 public interface ExpressionEvaluator 24 { 25 32 public Object read(Object target, String expression); 33 34 40 public Object readCompiled(Object target, Object expression); 41 42 49 public void write(Object target, String expression, Object value); 50 51 57 public void writeCompiled(Object target, Object expression, Object value); 58 59 65 public boolean isConstant(String expression); 66 } | Popular Tags |