PropertyResolver represents a pluggable mechanism for accessing a "property" of an underlying Java object instance. Different {@link PropertyResolver} implementations can supportproperty resolution on instances of different Java classes (such as introspection-based access to properties of a JavaBeans component, or get()
and put()
calls on a java.util.Map
instance).
All implementations must respect the rules for JavaBeans component, java.util.Map
, java.util.List
and array instances defined for each method but are allowed to add custom semantics for other types.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|