MaybeDetachExceptionCommand class
class MaybeDetachExceptionCommand implements AttachCommand {
/**
* The singleton command used to detach widgets.
*/
void execute(Widget w) {
if (w.isAttached()) {
w.onDetach();
}
}
}
class MaybeDetachExceptionCommand implements AttachCommand {
/**
* The singleton command used to detach widgets.
*/
void execute(Widget w) {
if (w.isAttached()) {
w.onDetach();
}
}
}