/**
   * Constructs with the specified initial all element nodes.
   *
   * @param allElementNodes the instance of List
   */
  public RadioButtonTableCellEditor(List allElementNodes) {
    radioButtonSelectorBar = new JRadioButtonSelectorBar(allElementNodes, true);

    JClassicSelectorMenuButton menuButton =
        (JClassicSelectorMenuButton) radioButtonSelectorBar.getMenuButton();
    menuButton.setShowArrow(false);
  }