/** Allows a UTCTimeBox to be created with a specified format. */
  public UTCTimeBoxImplHtml4() {
    this.textbox = new Select();

    final TextBoxHandler handler = new TextBoxHandler();
    textbox.addDomHandler(handler, BlurEvent.getType());
    textbox.addValueChangeHandler(handler);
    textbox.setFixedMenuSize(5);

    initWidget(textbox);
  }