|
JSF-Spring | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface MethodBindingFactory
Factory for creating MethodBinding
s and
ValueBinding
s. Used by ApplicationImpl
.
Method Summary | |
---|---|
MethodBinding |
createMethodBinding(Application application,
java.lang.String ref,
java.lang.Class[] params)
Instantiate and return a new MethodBinding for the specified
method binding expression, which may be used to call the corresponding
method later. |
ValueBinding |
createValueBinding(Application application,
java.lang.String ref)
Instantiate and return a new ValueBinding for the specified value
binding expression, which may be used to manipulate the corresponding
property value later. |
Method Detail |
---|
MethodBinding createMethodBinding(Application application, java.lang.String ref, java.lang.Class[] params)
MethodBinding
for the specified
method binding expression, which may be used to call the corresponding
method later.
application
- the original Application of the underlying
JSF implementationref
- Method binding expression for which to return a
MethodBinding
instanceparams
- Parameter signatures that must be compatible with those of the
method to be invoked, or a zero-length array or
null
for a method that takes no parameters
java.lang.NullPointerException
- if ref
is null
ReferenceSyntaxException
- if the specified ref
has invalid syntaxValueBinding createValueBinding(Application application, java.lang.String ref)
ValueBinding
for the specified value
binding expression, which may be used to manipulate the corresponding
property value later.
application
- the original Application of the underlying
JSF implementationref
- Value binding expression for which to return a
ValueBinding
instance
java.lang.NullPointerException
- if ref
is null
ReferenceSyntaxException
- if the specified ref
has invalid syntax
|
JSF-Spring | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |