/** * その他の設定領域を取得します。 * * @return その他の設定領域 */ public ACGroupBox getOthers() { if (others == null) { others = new ACGroupBox(); others.setText("その他の設定"); addOthers(); } return others; }
/** * 帳票設定領域を取得します。 * * @return 帳票設定領域 */ public ACGroupBox getChohyos() { if (chohyos == null) { chohyos = new ACGroupBox(); chohyos.setText("帳票"); addChohyos(); } return chohyos; }
/** * PDF設定領域を取得します。 * * @return PDF設定領域 */ public ACGroupBox getPdfFileSelects() { if (pdfFileSelects == null) { pdfFileSelects = new ACGroupBox(); pdfFileSelects.setText("PDFの設定"); addPdfFileSelects(); } return pdfFileSelects; }
/** * DB設定領域を取得します。 * * @return DB設定領域 */ public ACGroupBox getDbs() { if (dbs == null) { dbs = new ACGroupBox(); dbs.setText("データベースの設定"); addDbs(); } return dbs; }
/** * データの退避・復元領域を取得します。 * * @return データの退避・復元領域 */ public ACGroupBox getBackupResotres() { if (backupResotres == null) { backupResotres = new ACGroupBox(); backupResotres.setText("データの退避・復元"); backupResotres.setAutoWrap(false); addBackupResotres(); } return backupResotres; }
/** * 利用票本表への表示を取得します。 * * @return 利用票本表への表示 */ public ACGroupBox getRiyohyos() { if (riyohyos == null) { riyohyos = new ACGroupBox(); riyohyos.setText("利用票本表への表示"); riyohyos.setAutoWrap(false); addRiyohyos(); } return riyohyos; }