Issue 3: Cannot copy properties of the beans when they are not bound - binding.copyAToB()
Status:  Accepted
Owner:
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