public class MethodReference extends MethodInfo
| Constructor and Description | 
|---|
| MethodReference(Object base,
               Method method) | 
| MethodReference(Object base,
               Method method,
               Object[] actualParameters,
               boolean fromMethod) | 
| Modifier and Type | Method and Description | 
|---|---|
| Object[] | getActualParameters()Returns the actual (evaluated) parameters of the method call. | 
| Object | getBase()Returns the base of the EL method expression. | 
| Method | getMethod()Returns the concrete  Methodinstance of the EL method expression. | 
| boolean | isFromMethod()Returns  trueif this method reference is from an actual method call and not from a getter of a property. | 
getName, getParamTypes, getReturnTypepublic static final Object[] NO_PARAMS
public Object getBase()
getMethod() should be invoked.public Method getMethod()
Method instance of the EL method expression. Usually, this is a method of the
 class behind getBase().Method instance of the EL method expression.public Object[] getActualParameters()
null. Those should be passed to Method.invoke(Object, Object...).public boolean isFromMethod()
true if this method reference is from an actual method call and not from a getter of a property.true if this method reference is from an actual method call and not from a getter of a property.Copyright © 2012–2019 OmniFaces. All rights reserved.