This can be used to perform updates on several objects, or simply to act as a kind of easy-to-use DSL.
170171172173174175176
* * @param source * the source object, from which properties will be read */ public Update update( Object source ) { return new Update( translatorFactory, source ); }
131132133134135136137
* * @param source the source object, from which properties will be read * @param destination the destination object, to which properties will be written */ public Update update( Object source ) { return new Update(configuration, source); }
* Create a curried update from a source object which could then be applied to several destination objects. * * @param source the source object, from which properties will be read */ public Update update( Object source ) { return new Update(configuration, source); }