return tree;
}
protected Binding doBind(JComponent control, FormModel formModel, String formPropertyPath, Map context) {
Assert.isTrue(control instanceof CheckBoxTree, formPropertyPath);
CheckBoxTree list = (CheckBoxTree)control;
CheckBoxTreeBinding binding = new CheckBoxTreeBinding(list,
formModel, formPropertyPath);
applyContext(binding, context);
return binding;
}