Package ej.widget.debug
Interface WidgetVisitor
-
public interface WidgetVisitor
Visitor forWidget
andContainer
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
beginContainer()
Signals the children of aContainer
are about to be visited.void
endContainer()
Signals the children of aContainer
just have all been visited.void
visitWidget(ej.mwt.Widget widget)
Visits aWidget
.
-
-
-
Method Detail
-
beginContainer
void beginContainer()
Signals the children of aContainer
are 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 aContainer
just have all been visited.
-
-