public static UiChild
The limit attribute specifies the number of times the function can be safely called. If no limit is specified, it is assumed to be unlimited. Only one child is permitted under each custom tag specified so the limit represents the number of times the tag can be present in any object.
The tagname attribute indicates the name of the tag this method will handle
in the UiBinder
template. If none is specified, the method name must
begin with "add", and the tag is assumed to be the remaining characters
(after the "add" prefix") entirely in lowercase.
For example,
@UiChild MyWidget#addCustomChild(Widget w)
and
<p:MyWidget> <p:customchild> <g:SomeWidget /> </p:customchild> </p:MyWidget>would invoke the
addCustomChild
function to add an instance of
SomeWidget.Copyright © 2018. All rights reserved.