My favorites | Sign in
Project Home Wiki Issues Source
READ-ONLY: This project has been archived. For more information see this post.
Search
for
  Advanced search   Search tips   Subscriptions
Issue 3: Cannot copy properties of the beans when they are not bound - binding.copyAToB()
1 person starred this issue and may be notified of changes. Back to list
Status:  Accepted
Owner:  wmly...@gmail.com


 
Project Member Reported by wmly...@gmail.com, Apr 9, 2009
What steps will reproduce the problem?
1. BindingGroup binding = BindingFactory.createBinding(a, b, "name");
2. binding.copyAToB();

What is the expected output? What do you see instead?

The only way to copy is to do

BindingGroup binding = BindingFactory.createBinding(a, b, "name");
binding.bind();
binding.copyAToB();

But it should be possible to call binding.copyAToB() even when
binding.bind() was not called before


Powered by Google Project Hosting