use of org.uberfire.client.mvp.UberElement in project kie-wb-common by kiegroup.
the class FormModelCreationContainerViewImpl method init.
@Override
public void init(Presenter container) {
this.container = container;
modelCreator.setText(container.getFormModelLabel());
DOMUtil.removeAllChildren(viewContainer);
UberElement creationView = container.getCreationView();
hasCreationView = creationView != null;
if (hasCreationView) {
viewContainer.appendChild(creationView.getElement());
}
}
Aggregations