Example #1
0
  /**
   * その他の設定領域を取得します。
   *
   * @return その他の設定領域
   */
  public ACGroupBox getOthers() {
    if (others == null) {

      others = new ACGroupBox();

      others.setText("その他の設定");

      addOthers();
    }
    return others;
  }
Example #2
0
  /**
   * 帳票設定領域を取得します。
   *
   * @return 帳票設定領域
   */
  public ACGroupBox getChohyos() {
    if (chohyos == null) {

      chohyos = new ACGroupBox();

      chohyos.setText("帳票");

      addChohyos();
    }
    return chohyos;
  }
Example #3
0
  /**
   * PDF設定領域を取得します。
   *
   * @return PDF設定領域
   */
  public ACGroupBox getPdfFileSelects() {
    if (pdfFileSelects == null) {

      pdfFileSelects = new ACGroupBox();

      pdfFileSelects.setText("PDFの設定");

      addPdfFileSelects();
    }
    return pdfFileSelects;
  }
Example #4
0
  /**
   * DB設定領域を取得します。
   *
   * @return DB設定領域
   */
  public ACGroupBox getDbs() {
    if (dbs == null) {

      dbs = new ACGroupBox();

      dbs.setText("データベースの設定");

      addDbs();
    }
    return dbs;
  }
Example #5
0
  /**
   * データの退避・復元領域を取得します。
   *
   * @return データの退避・復元領域
   */
  public ACGroupBox getBackupResotres() {
    if (backupResotres == null) {

      backupResotres = new ACGroupBox();

      backupResotres.setText("データの退避・復元");

      backupResotres.setAutoWrap(false);

      addBackupResotres();
    }
    return backupResotres;
  }
Example #6
0
  /**
   * 利用票本表への表示を取得します。
   *
   * @return 利用票本表への表示
   */
  public ACGroupBox getRiyohyos() {
    if (riyohyos == null) {

      riyohyos = new ACGroupBox();

      riyohyos.setText("利用票本表への表示");

      riyohyos.setAutoWrap(false);

      addRiyohyos();
    }
    return riyohyos;
  }