Example #1
0
  /**
   * 更新ボタンを取得します。
   *
   * @return 更新ボタン
   */
  public ACAffairButton getUpdate() {
    if (update == null) {

      update = new ACAffairButton();

      update.setText("更新(S)");

      update.setToolTipText("現在の設定内容を保存します。");

      update.setMnemonic('S');

      update.setIconPath(ACConstants.ICON_PATH_UPDATE_24);

      addUpdate();
    }
    return update;
  }