Class PropertyAccessPlan
java.lang.Object
com.ibatis.sqlmap.engine.accessplan.BaseAccessPlan
com.ibatis.sqlmap.engine.accessplan.PropertyAccessPlan
- All Implemented Interfaces:
AccessPlan
Property access plan (for working with beans).
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected Invoker[]The getters.protected static final Object[]The Constant NO_ARGUMENTS.protected Invoker[]The setters.Fields inherited from class com.ibatis.sqlmap.engine.accessplan.BaseAccessPlan
clazz, info, propertyNames -
Method Summary
Modifier and TypeMethodDescriptionObject[]getProperties(Object object) Gets all of the properties of a bean.voidsetProperties(Object object, Object[] values) Sets all of the properties of a bean.Methods inherited from class com.ibatis.sqlmap.engine.accessplan.BaseAccessPlan
getGetterNames, getGetters, getSetterNames, getSetters, getTypes
-
Field Details
-
NO_ARGUMENTS
The Constant NO_ARGUMENTS. -
setters
The setters. -
getters
The getters.
-
-
Method Details
-
setProperties
Description copied from interface:AccessPlanSets all of the properties of a bean.- Parameters:
object- - the beanvalues- - the property values
-
getProperties
Description copied from interface:AccessPlanGets all of the properties of a bean.- Parameters:
object- - the bean- Returns:
- the properties
-