CssUtils.setDisplayVisibility(resumeButton, false);
}
private Element createControlButton(String className, DebuggerCommand command, String tooltip) {
Element button = Elements.createDivElement(className, css.buttonEnabled());
button.addEventListener(Event.CLICK, new ButtonClickListener(command), false);
Tooltip.create(resources, button, PositionController.VerticalAlign.BOTTOM,
PositionController.HorizontalAlign.MIDDLE, tooltip);
return button;
}