Package ej.widget.debug
Interface WidgetVisitor
-
public interface WidgetVisitorVisitor forWidgetandContainer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbeginContainer()Signals the children of aContainerare about to be visited.voidendContainer()Signals the children of aContainerjust have all been visited.voidvisitWidget(ej.mwt.Widget widget)Visits aWidget.
-
-
-
Method Detail
-
beginContainer
void beginContainer()
Signals the children of aContainerare about to be visited.
-
visitWidget
void visitWidget(ej.mwt.Widget widget)
Visits aWidget.- Parameters:
widget- the visited widget.
-
endContainer
void endContainer()
Signals the children of aContainerjust have all been visited.
-
-