| 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 |
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 |