List of usage examples for com.google.gwt.user.client.ui ComplexPanel iterator
public Iterator<Widget> iterator()
From source file:org.uberfire.client.views.pfly.dropdown.ListDropdown.java
License:Apache License
private void removeChildWidgets(final ComplexPanel panel) { final Iterator<Widget> iterator = panel.iterator(); while (iterator.hasNext()) { iterator.next();/*from w ww .jav a 2s.c o m*/ iterator.remove(); } }