package com.completex.objective.components.persistency.mapper;
import java.beans.PropertyDescriptor;
/**
* @author Gennady Krizhevsky
*/
public interface ValueHandler {
void assignValue(String valuePath, RequestContext context,
Object currentBean,
PropertyDescriptor[] currentBeanDescriptors,
Object currentPo,
PropertyDescriptor currentPoDescriptor,
ParentValueHandler parentHandler, boolean forModification);
}
|