Double binder

I make the following component

  1. Adding dynamic TextField
  2. And remove them

So I want add binder on whole component
And on each TextField

TextFieldList testFieldList;

    _binder = new Binder<>();
    _binder.setBean(someDto);
    _binder.forField(testFieldList).asRequired()
        .bind(SomeDto::getList, SomeDto::setList);

Maybe there is a similar component?