RepeaterJXPathBindingBuilder provides a helper class for the Factory
implemented in
JXPathBindingManager that helps construct the
actual
RepeaterJXPathBinding out of the configuration in the
provided configElement which looks like:
<fb:repeater
id="contacts"
parent-path="contacts"
row-path="contact"
row-path-insert="new-contact" >
<fb:identity>
<!-- nested bindings that map the 'identity' of the items -->
</fb:identity>
<fb:on-bind>
<!-- nested bindings executed on updates AND right after the insert -->
</fb:on-bind>
<fb:on-delete-row>
<!-- nested bindings executed on deletion of row -->
</fb:on-delete-row>
<fb:on-insert-row>
<!-- nested bindings executed to prepare the insertion of a row -->
</fb:on-insert-row>
</fb:repeater>
version: $Id: RepeaterJXPathBindingBuilder.java 517733 2007-03-13 15:37:22Z vgritsenko $ |