1 16 package javax.faces.el; 17 18 import javax.faces.context.FacesContext; 19 20 24 public abstract class MethodBinding 25 { 26 27 29 public MethodBinding() 31 { 32 } 33 34 public String getExpressionString() 36 { 37 return null; 38 } 39 40 public abstract Class getType(FacesContext facescontext) throws MethodNotFoundException; 41 42 public abstract Object invoke(FacesContext facescontext, Object aobj[]) 43 throws EvaluationException, MethodNotFoundException; 44 } 45 | Popular Tags |