>From Overview
----сut begin --
Note that the .betwixt file specifies the mapping for a single bean. So, whilst you
can add extra elements (as above), it can't be used to specify to names for child
beans through nesting element elements.
----- cut end --
I think that it is not comfortable. For example i have two beans A and B.
class A{
private B initValue;
private B finishValue;
}
class B{
private int foo;
bar int bar;
}
How can i map this bean at that xml file
<a>
<init-b foo=".." bar="..."/>
<finish-b foo=".." bar="..."/>
</a>