Example #1
0
  /**
   * Gets the name of the selected action
   *
   * @return the name of the selected action
   */
  public String getSelectedName() {
    UIAction a = panel.getSelectedAction();

    return (a == null)
           ? null
           : a.getActionName();
  }