コード例 #1
0
ファイル: aNavigatorWidget.java プロジェクト: appnativa/rare
  /**
   * 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();
  }