• R/O
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

カルネージハートエクサのチームデータ編集ツール JAVAベース


Commit MetaInfo

Revision6 (tree)
Time2015-05-31 23:46:52
Authormanjihq

Log Message

ソースファイルの整形

Change Summary

Incremental Difference

--- chexaFormation/trunk/src/chexaformation/cheEmblem.java (revision 5)
+++ chexaFormation/trunk/src/chexaformation/cheEmblem.java (revision 6)
@@ -7,6 +7,7 @@
77
88 /**
99 * エンブレムデータ
10+ *
1011 * @author fukui
1112 */
1213 public class cheEmblem {
@@ -18,8 +19,9 @@
1819
1920 /**
2021 * データの読み込み
22+ *
2123 * @param s 読み込み元データポインタ
22- * @param nofs 読み込み元オフセット
24+ * @param nofs 読み込み元オフセット
2325 * @return 正常に読み込めたときにtrue
2426 */
2527 private boolean inner_load(byte s[], int nofs) {
@@ -74,6 +76,7 @@
7476
7577 /**
7678 * コンストラクタ
79+ *
7780 * @param s 読み込み元データポインタ
7881 * @param nofs 読み込み元オフセット
7982 */
@@ -88,6 +91,7 @@
8891
8992 /**
9093 * エンブレムデータをコピー
94+ *
9195 * @param s コピー先エンブレムデータ
9296 */
9397 public void copy(cheEmblem s) {
@@ -98,8 +102,9 @@
98102
99103 /**
100104 * データの読み込み
105+ *
101106 * @param s 読み込み元データポインタ
102- * @param nofs 読み込み元オフセット
107+ * @param nofs 読み込み元オフセット
103108 * @return 正常に読み込めたときにtrue
104109 */
105110 public boolean load(byte s[], int nofs) {
--- chexaFormation/trunk/src/chexaformation/transData.java (revision 5)
+++ chexaFormation/trunk/src/chexaformation/transData.java (revision 6)
@@ -17,7 +17,8 @@
1717
1818 /**
1919 * コンストラクタ
20- * @param oke OKEデータ
20+ *
21+ * @param oke OKEデータ
2122 * @param n 配置場所ID
2223 */
2324 public transData(cheOkeData oke, int n) {
@@ -31,6 +32,7 @@
3132
3233 /**
3334 * コンストラクタ
35+ *
3436 * @param team チームデータ
3537 */
3638 public transData(cheTeamData team) {
@@ -43,8 +45,9 @@
4345
4446 /**
4547 * コンストラクタ
48+ *
4649 * @param team チームデータ
47- * @param idx マッチデータ内インデックス
50+ * @param idx マッチデータ内インデックス
4851 */
4952 public transData(cheTeamData team, int idx) {
5053 obj = team;
@@ -60,7 +63,7 @@
6063
6164 public boolean isDataFlavorSupported(DataFlavor flavor) {
6265 int i;
63- for (i = 0 ; i < support_data.length ; i++) {
66+ for (i = 0; i < support_data.length; i++) {
6467 if (flavor.equals(support_data[i]) == true) {
6568 return true;
6669 }
--- chexaFormation/trunk/src/chexaformation/Main.java (revision 5)
+++ chexaFormation/trunk/src/chexaformation/Main.java (revision 6)
@@ -7,6 +7,7 @@
77
88 /**
99 * メイン
10+ *
1011 * @author fukui
1112 */
1213 public class Main {
@@ -17,6 +18,7 @@
1718
1819 /**
1920 * メッセージボックス表示
21+ *
2022 * @param owner 親ダイアログボックス
2123 * @param title タイトル
2224 * @param mesg1 メッセージ一行目
@@ -39,6 +41,7 @@
3941
4042 /**
4143 * メッセージボックス表示
44+ *
4245 * @param owner 親フレームウィンドウ
4346 * @param title タイトル
4447 * @param mesg1 メッセージ一行目
@@ -61,6 +64,7 @@
6164
6265 /**
6366 * 確認メッセージ表示
67+ *
6468 * @param owner 親ダイアログボックス
6569 * @param title タイトル
6670 * @param mesg1 メッセージ一行目
@@ -85,6 +89,7 @@
8589
8690 /**
8791 * 確認メッセージ表示
92+ *
8893 * @param owner 親フレームウィンドウ
8994 * @param title タイトル
9095 * @param mesg1 メッセージ一行目
--- chexaFormation/trunk/src/chexaformation/transOkeHandler.java (revision 5)
+++ chexaFormation/trunk/src/chexaformation/transOkeHandler.java (revision 6)
@@ -16,7 +16,9 @@
1616 */
1717 public class transOkeHandler extends TransferHandler {
1818
19- /** コンストラクタ */
19+ /**
20+ * コンストラクタ
21+ */
2022 public transOkeHandler() {
2123 super();
2224 }
--- chexaFormation/trunk/src/chexaformation/cheOkeData.java (revision 5)
+++ chexaFormation/trunk/src/chexaformation/cheOkeData.java (revision 6)
@@ -207,6 +207,7 @@
207207
208208 /**
209209 * OKEデータをダンプ
210+ *
210211 * @param basename ファイル名の基本名
211212 */
212213 public void dump(String basename) {
--- chexaFormation/trunk/src/chexaformation/cheFile.java (revision 5)
+++ chexaFormation/trunk/src/chexaformation/cheFile.java (revision 6)
@@ -12,6 +12,7 @@
1212
1313 /**
1414 * CHEファイルデータ
15+ *
1516 * @author fukui
1617 */
1718 public class cheFile {
@@ -43,6 +44,7 @@
4344
4445 /**
4546 * ファイルからデータを読み出し
47+ *
4648 * @return 正常にCHEファイルを読み出せたときにtrue
4749 */
4850 private boolean inner_load() {
@@ -108,6 +110,7 @@
108110
109111 /**
110112 * コンストラクタ
113+ *
111114 * @param s CHEファイル名
112115 */
113116 public cheFile(String s) {
@@ -131,6 +134,7 @@
131134
132135 /**
133136 * ファイルからデータを読みだす
137+ *
134138 * @return 正常に読み込めたときにtrue
135139 */
136140 public boolean load() {
@@ -147,6 +151,7 @@
147151
148152 /**
149153 * ファイルへデータを保存
154+ *
150155 * @return 正常に保存できたときにtrue
151156 */
152157 public boolean save() {
@@ -236,6 +241,7 @@
236241
237242 /**
238243 * チーム数を取得
244+ *
239245 * @return チーム数
240246 */
241247 public int get_team_max() {
@@ -244,6 +250,7 @@
244250
245251 /**
246252 * OKE数を取得
253+ *
247254 * @return OKE数
248255 */
249256 public int get_oke_max() {
@@ -252,6 +259,7 @@
252259
253260 /**
254261 * ファイル名の取得
262+ *
255263 * @return ファイル名
256264 */
257265 public String get_fname() {
@@ -260,6 +268,7 @@
260268
261269 /**
262270 * ファイル名の設定
271+ *
263272 * @param s ファイル名
264273 */
265274 public void set_fname(String s) {
@@ -268,7 +277,8 @@
268277
269278 /**
270279 * チームデータの取得
271- * @param nidx インデックス
280+ *
281+ * @param nidx インデックス
272282 * @return チームデータ
273283 */
274284 public cheTeamData get_team(int nidx) {
@@ -280,9 +290,10 @@
280290
281291 /**
282292 * チームデータの設定
283- * @param nidx インデックス
293+ *
294+ * @param nidx インデックス
284295 * @param p チームデータ
285- * @return 正常に設定できたときにtrue
296+ * @return 正常に設定できたときにtrue
286297 */
287298 public boolean set_team(int nidx, cheTeamData p) {
288299 int i;
@@ -323,7 +334,8 @@
323334
324335 /**
325336 * チームデータの削除
326- * @param nidx インデックス
337+ *
338+ * @param nidx インデックス
327339 */
328340 public void remove_team(int nidx) {
329341 if (nidx < 0 || nidx >= team_max) {
@@ -334,10 +346,10 @@
334346 }
335347
336348 /**
337- * チームデータの移動
338- * 移動先が空ではない時には挿入
339- * @param src 移動元インデックス
340- * @param dest 移動先インデックス
349+ * チームデータの移動 移動先が空ではない時には挿入
350+ *
351+ * @param src 移動元インデックス
352+ * @param dest 移動先インデックス
341353 */
342354 public void move_team(int src, int dest) {
343355 if (src < 0 || src >= team_max || dest < 0 || dest >= team_max
@@ -364,7 +376,8 @@
364376
365377 /**
366378 * OKEの取得
367- * @param nidx インデックス
379+ *
380+ * @param nidx インデックス
368381 * @return OKEデータ
369382 */
370383 public cheOkeData get_oke(int nidx) {
@@ -376,7 +389,8 @@
376389
377390 /**
378391 * OKEデータの設定
379- * @param nidx インデックス
392+ *
393+ * @param nidx インデックス
380394 * @param p OKEデータ
381395 */
382396 public void set_oke(int nidx, cheOkeData p) {
@@ -388,6 +402,7 @@
388402
389403 /**
390404 * 指定したOKEデータと同じ内容の登録済みデータを検索
405+ *
391406 * @param p OKEデータ
392407 * @return 発見したインデックス。見つからない場合-1
393408 */
@@ -403,9 +418,9 @@
403418
404419 /**
405420 * OKEデータを追加
421+ *
406422 * @param p OKEデータ
407- * @return 正常に追加できたときにOKEデータ。
408- * 失敗したときにはnull
423+ * @return 正常に追加できたときにOKEデータ。 失敗したときにはnull
409424 */
410425 public cheOkeData add_oke(cheOkeData p) {
411426 int i;
@@ -425,6 +440,7 @@
425440
426441 /**
427442 * マッチデータ名称を取得
443+ *
428444 * @return マッチデータ名。マッチデータではない場合null
429445 */
430446 public String get_match_name() {
@@ -450,6 +466,7 @@
450466
451467 /**
452468 * マッチデータ名称を設定
469+ *
453470 * @param s マッチデータ名
454471 */
455472 public void set_match_name(String s) {
@@ -474,6 +491,7 @@
474491
475492 /**
476493 * マッチ設定データを取得
494+ *
477495 * @return マッチ設定(336byte)。マッチデータではない場合null
478496 */
479497 public byte[] get_match_data() {
@@ -487,6 +505,7 @@
487505
488506 /**
489507 * マッチ設定データを設定
508+ *
490509 * @param p マッチ設定(336byte)
491510 * @return 正常に設定できたときtrue
492511 */
@@ -549,6 +568,7 @@
549568
550569 /**
551570 * チームデータかどうかを取得
571+ *
552572 * @return チームデータの時にtrue
553573 */
554574 public boolean is_teamfile() {
@@ -557,6 +577,7 @@
557577
558578 /**
559579 * ファイル名に対応するCHEファイルデータを取得
580+ *
560581 * @param s ファイル名
561582 * @return CHEファイルデータ。見つからない場合にnull
562583 */
--- chexaFormation/trunk/src/chexaformation/cheNameDocument.java (revision 5)
+++ chexaFormation/trunk/src/chexaformation/cheNameDocument.java (revision 6)
@@ -6,6 +6,7 @@
66
77 /**
88 * 名称データ
9+ *
910 * @author fukui
1011 */
1112 public class cheNameDocument extends PlainDocument {
--- chexaFormation/trunk/src/chexaformation/cheTeamData.java (revision 5)
+++ chexaFormation/trunk/src/chexaformation/cheTeamData.java (revision 6)
@@ -8,6 +8,7 @@
88
99 /**
1010 * チームデータ
11+ *
1112 * @author fukui
1213 */
1314 public class cheTeamData {
@@ -27,10 +28,11 @@
2728
2829 /**
2930 * データの読み込み
31+ *
3032 * @param s 読み込み元データポインタ
31- * @param nofs 読み込み元オフセット
32- * @param che CHEファイルデータ
33- * @return
33+ * @param nofs 読み込み元オフセット
34+ * @param che CHEファイルデータ
35+ * @return
3436 */
3537 private boolean inner_load(byte s[], int nofs, cheFile che) {
3638 byte[] work = new byte[39];
@@ -111,9 +113,10 @@
111113
112114 /**
113115 * コンストラクタ
116+ *
114117 * @param s 読み込み元データポインタ
115- * @param nofs 読み込み元オフセット
116- * @param che CHEデータ
118+ * @param nofs 読み込み元オフセット
119+ * @param che CHEデータ
117120 */
118121 public cheTeamData(byte s[], int nofs, cheFile che) {
119122 oke = new cheOkeData[3];
@@ -125,6 +128,7 @@
125128
126129 /**
127130 * チームデータのコピー
131+ *
128132 * @param p コピー先チームデータ
129133 */
130134 public void copy(cheTeamData p) {
@@ -143,10 +147,11 @@
143147
144148 /**
145149 * チームデータの読み込み
150+ *
146151 * @param s 読み込み元データポインタ
147- * @param nofs 読み込み元オフセット
148- * @param che CHEデータ
149- * @return
152+ * @param nofs 読み込み元オフセット
153+ * @param che CHEデータ
154+ * @return
150155 */
151156 public boolean load(byte s[], int nofs, cheFile che) {
152157 return inner_load(s, nofs, che);
@@ -154,8 +159,9 @@
154159
155160 /**
156161 * チームデータの保存
162+ *
157163 * @param s 保存先データポインタ
158- * @param nofs 保存先オフセット
164+ * @param nofs 保存先オフセット
159165 * @return 正常に保存できたときにtrue
160166 */
161167 public boolean save(byte s[], int nofs) {
@@ -224,8 +230,9 @@
224230
225231 /**
226232 * 指定された位置が利用可能かどうかをチェック
227- * @param nidx チェック元OKE番号
228- * @param npos 配置場所ID
233+ *
234+ * @param nidx チェック元OKE番号
235+ * @param npos 配置場所ID
229236 * @return 配置できるときにtrue
230237 */
231238 public boolean check_position(int nidx, int npos) {
@@ -243,9 +250,10 @@
243250
244251 /**
245252 * OKEデータを追加する
246- * @param nidx 追加位置
253+ *
254+ * @param nidx 追加位置
247255 * @param p OKEデータ
248- * @param npos 配置場所ID
256+ * @param npos 配置場所ID
249257 * @return 正常に追加できたときにtrue
250258 */
251259 public boolean add_member(int nidx, cheOkeData p, int npos) {
@@ -274,8 +282,9 @@
274282
275283 /**
276284 * OKEデータの削除
277- * @param nidx OKE番号
278- * @return
285+ *
286+ * @param nidx OKE番号
287+ * @return
279288 */
280289 public boolean del_member(int nidx) {
281290 if (nidx < 0 || nidx > 2) {
@@ -288,7 +297,8 @@
288297
289298 /**
290299 * OKEデータの取得
291- * @param nidx OKE番号
300+ *
301+ * @param nidx OKE番号
292302 * @return OKEデータ。範囲外もしくは存在しないときにnull
293303 */
294304 public cheOkeData get_member(int nidx) {
@@ -300,7 +310,8 @@
300310
301311 /**
302312 * OKEデータの設定
303- * @param nidx OKE番号
313+ *
314+ * @param nidx OKE番号
304315 * @param p OKEデータ
305316 */
306317 public void set_member(int nidx, cheOkeData p) {
@@ -312,6 +323,7 @@
312323
313324 /**
314325 * ユニークなOKEデータ一覧を取得
326+ *
315327 * @return OKEデータ配列
316328 */
317329 public cheOkeData[] get_unique_member() {
@@ -334,7 +346,8 @@
334346
335347 /**
336348 * 指定したOKEの配置場所を取得
337- * @param nidx OKE番号
349+ *
350+ * @param nidx OKE番号
338351 * @return 配置場所ID
339352 */
340353 public int get_position(int nidx) {
@@ -346,7 +359,8 @@
346359
347360 /**
348361 * 指定したOKEの配置場所を設定
349- * @param nidx OKE番号
362+ *
363+ * @param nidx OKE番号
350364 * @param n 配置場所ID
351365 */
352366 public void set_position(int nidx, int n) {
@@ -362,6 +376,7 @@
362376
363377 /**
364378 * チーム名称の取得
379+ *
365380 * @return 名称
366381 */
367382 public String get_team_name() {
@@ -370,6 +385,7 @@
370385
371386 /**
372387 * オーナー名の取得
388+ *
373389 * @return オーナー名
374390 */
375391 public String get_owner_name() {
@@ -378,6 +394,7 @@
378394
379395 /**
380396 * 年の取得
397+ *
381398 * @return 年
382399 */
383400 public int get_year() {
@@ -386,6 +403,7 @@
386403
387404 /**
388405 * 月の取得
406+ *
389407 * @return 月
390408 */
391409 public int get_month() {
@@ -394,6 +412,7 @@
394412
395413 /**
396414 * 日の取得
415+ *
397416 * @return 日
398417 */
399418 public int get_day() {
@@ -402,6 +421,7 @@
402421
403422 /**
404423 * レーティング値の取得
424+ *
405425 * @return レーティング値
406426 */
407427 public int get_rating() {
@@ -410,6 +430,7 @@
410430
411431 /**
412432 * チーム名称の設定
433+ *
413434 * @param s 名称
414435 */
415436 public void set_team_name(String s) {
@@ -418,6 +439,7 @@
418439
419440 /**
420441 * オーナー名の設定
442+ *
421443 * @param s オーナー名
422444 */
423445 public void set_owner_name(String s) {
@@ -426,6 +448,7 @@
426448
427449 /**
428450 * 作成日付の設定
451+ *
429452 * @param y 年
430453 * @param m 月
431454 * @param d 日
@@ -438,6 +461,7 @@
438461
439462 /**
440463 * レーティング値の設定
464+ *
441465 * @param n レーティング値
442466 */
443467 public void set_rating(int n) {
@@ -446,6 +470,7 @@
446470
447471 /**
448472 * エンブレムの設定
473+ *
449474 * @param emb エンブレムデータ
450475 */
451476 public void set_emblem(cheEmblem emb) {
@@ -454,6 +479,7 @@
454479
455480 /**
456481 * エンブレムの設定
482+ *
457483 * @param oke OKEデータ
458484 */
459485 public void set_emblem(cheOkeData oke) {
@@ -462,6 +488,7 @@
462488
463489 /**
464490 * エンブレムの取得
491+ *
465492 * @return エンブレムデータ
466493 */
467494 public cheEmblem get_emblem() {
@@ -470,6 +497,7 @@
470497
471498 /**
472499 * 有効フラグの取得
500+ *
473501 * @return 有効フラグ
474502 */
475503 public boolean is_enable() {
@@ -478,6 +506,7 @@
478506
479507 /**
480508 * 有効フラグの設定
509+ *
481510 * @param b 有効フラグ
482511 */
483512 public void set_enable(boolean b) {
@@ -486,6 +515,7 @@
486515
487516 /**
488517 * データファイル名称の取得
518+ *
489519 * @return ファイル名
490520 */
491521 public String get_data_name() {
@@ -494,7 +524,8 @@
494524
495525 /**
496526 * 指定されたOKの配置場所名称を取得
497- * @param nidx OKE番号
527+ *
528+ * @param nidx OKE番号
498529 * @return 配置場所名称
499530 */
500531 public String member_pos(int nidx) {
@@ -548,6 +579,7 @@
548579
549580 /**
550581 * メンバーリスト文字列の作成
582+ *
551583 * @return メンバーリスト文字列
552584 */
553585 public String[] make_member_list() {
--- chexaFormation/trunk/src/chexaformation/MatchDataPanel.java (revision 5)
+++ chexaFormation/trunk/src/chexaformation/MatchDataPanel.java (revision 6)
@@ -21,8 +21,11 @@
2121 cheFile matchdata;
2222 DefaultListModel teamdata;
2323
24- /** Creates new form MatchDataPanel
25- * @param p */
24+ /**
25+ * Creates new form MatchDataPanel
26+ *
27+ * @param p
28+ */
2629 public MatchDataPanel(cheFile p) {
2730 if (p == null) {
2831 p = new cheFile();
@@ -91,6 +94,7 @@
9194
9295 /**
9396 * チームリストの取得
97+ *
9498 * @return チームリストパネル
9599 */
96100 private TeamListPanel get_teampanel() {
@@ -100,6 +104,7 @@
100104
101105 /**
102106 * 現在選択中のチームデータを取得
107+ *
103108 * @return チームデータ
104109 */
105110 public cheTeamData get_current_team() {
@@ -112,6 +117,7 @@
112117
113118 /**
114119 * 現在の選択位置を取得
120+ *
115121 * @return 選択位置
116122 */
117123 public int get_current_index() {
@@ -120,6 +126,7 @@
120126
121127 /**
122128 * チームデータを設定
129+ *
123130 * @param p チームデータ
124131 * @param n 設定位置
125132 */
@@ -135,9 +142,9 @@
135142 if (n == -1) {
136143 Main.mesg_box((Dialog) (getRootPane().getParent()),
137144 java.util.ResourceBundle.getBundle(
138- "chexaformation/resource").getString("addTEAM"),
145+ "chexaformation/resource").getString("addTEAM"),
139146 java.util.ResourceBundle.getBundle(
140- "chexaformation/resource").
147+ "chexaformation/resource").
141148 getString("errNoSpaceTeam"), "");
142149 return;
143150 }
@@ -146,9 +153,9 @@
146153 if (matchdata.set_team(n, p) == false) {
147154 Main.mesg_box((Dialog) (getRootPane().getParent()),
148155 java.util.ResourceBundle.getBundle(
149- "chexaformation/resource").getString("addTEAM"),
156+ "chexaformation/resource").getString("addTEAM"),
150157 java.util.ResourceBundle.getBundle(
151- "chexaformation/resource").
158+ "chexaformation/resource").
152159 getString("errNoSpaceTeam"), "");
153160 } else {
154161 update_teamlist();
@@ -158,18 +165,19 @@
158165
159166 /**
160167 * チームデータを移動
161- * @param src_idx 移動元インデックス
162- * @param dest_idx 移動先インデックス
168+ *
169+ * @param src_idx 移動元インデックス
170+ * @param dest_idx 移動先インデックス
163171 */
164- public void move_team(int src_idx,int dest_idx) {
172+ public void move_team(int src_idx, int dest_idx) {
165173 matchdata.move_team(src_idx, dest_idx);
166174 update_teamlist();
167175 }
168176
169- /** This method is called from within the constructor to
170- * initialize the form.
171- * WARNING: Do NOT modify this code. The content of this method is
172- * always regenerated by the Form Editor.
177+ /**
178+ * This method is called from within the constructor to initialize the form.
179+ * WARNING: Do NOT modify this code. The content of this method is always
180+ * regenerated by the Form Editor.
173181 */
174182 @SuppressWarnings("unchecked")
175183 // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
@@ -293,11 +301,11 @@
293301 private void saveMatchActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_saveMatchActionPerformed
294302 int nret;
295303 JFileChooser fdlg = new JFileChooser(Main.cheMatchDataDir);
296- String filterTitle =
297- java.util.ResourceBundle.getBundle("chexaformation/resource").
304+ String filterTitle
305+ = java.util.ResourceBundle.getBundle("chexaformation/resource").
298306 getString("filterTitleCHE");
299- FileNameExtensionFilter ffilter =
300- new FileNameExtensionFilter(filterTitle, "CHE");
307+ FileNameExtensionFilter ffilter
308+ = new FileNameExtensionFilter(filterTitle, "CHE");
301309 fdlg.setFileFilter(ffilter);
302310 fdlg.setSelectedFile(new File(matchdata.get_fname()));
303311 nret = fdlg.showSaveDialog(getRootPane().getParent());
@@ -324,18 +332,18 @@
324332 if (matchdata.save() == true) {
325333 Main.mesg_box((Dialog) (getRootPane().getParent()),
326334 java.util.ResourceBundle.getBundle(
327- "chexaformation/resource").
335+ "chexaformation/resource").
328336 getString("titleSaveMatch"),
329337 java.util.ResourceBundle.getBundle(
330- "chexaformation/resource").
338+ "chexaformation/resource").
331339 getString("mesgSaveMatch"), "");
332340 } else {
333341 Main.mesg_box((Dialog) (getRootPane().getParent()),
334342 java.util.ResourceBundle.getBundle(
335- "chexaformation/resource").
343+ "chexaformation/resource").
336344 getString("titleSaveMatch"),
337345 java.util.ResourceBundle.getBundle(
338- "chexaformation/resource").
346+ "chexaformation/resource").
339347 getString("failSaveMatch"),
340348 ifile.getAbsolutePath());
341349 }
--- chexaFormation/trunk/src/chexaformation/mainForm.java (revision 5)
+++ chexaFormation/trunk/src/chexaformation/mainForm.java (revision 6)
@@ -17,7 +17,9 @@
1717 */
1818 public class mainForm extends javax.swing.JFrame {
1919
20- /** Creates new form mainForm */
20+ /**
21+ * Creates new form mainForm
22+ */
2123 public mainForm() {
2224 initComponents();
2325 }
@@ -26,10 +28,10 @@
2628 return mainPanel;
2729 }
2830
29- /** This method is called from within the constructor to
30- * initialize the form.
31- * WARNING: Do NOT modify this code. The content of this method is
32- * always regenerated by the Form Editor.
31+ /**
32+ * This method is called from within the constructor to initialize the form.
33+ * WARNING: Do NOT modify this code. The content of this method is always
34+ * regenerated by the Form Editor.
3335 */
3436 @SuppressWarnings("unchecked")
3537 // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
@@ -88,7 +90,7 @@
8890 private void openTeamActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_openTeamActionPerformed
8991 JDialog dlg = new JDialog(this,
9092 java.util.ResourceBundle.getBundle(
91- "chexaformation/resource").getString("titleTeamWindow"),
93+ "chexaformation/resource").getString("titleTeamWindow"),
9294 false);
9395 dlg.add(new TeamPanel());
9496 dlg.pack();
@@ -101,11 +103,11 @@
101103 private void makeMatchDataActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_makeMatchDataActionPerformed
102104 int nret;
103105 JFileChooser fdlg = new JFileChooser(Main.cheMatchDataDir);
104- String filterTitle =
105- java.util.ResourceBundle.getBundle("chexaformation/resource").
106+ String filterTitle
107+ = java.util.ResourceBundle.getBundle("chexaformation/resource").
106108 getString("filterTitleCHE");
107- FileNameExtensionFilter ffilter =
108- new FileNameExtensionFilter(filterTitle, "CHE");
109+ FileNameExtensionFilter ffilter
110+ = new FileNameExtensionFilter(filterTitle, "CHE");
109111 fdlg.setFileFilter(ffilter);
110112 nret = fdlg.showOpenDialog(getRootPane().getParent());
111113 if (nret == JFileChooser.APPROVE_OPTION) {
@@ -116,7 +118,7 @@
116118 if (che.is_teamfile() == false) {
117119 JDialog dlg = new JDialog(this,
118120 java.util.ResourceBundle.getBundle(
119- "chexaformation/resource").
121+ "chexaformation/resource").
120122 getString("titleMatchWindow"),
121123 false);
122124 che.set_fname("NEWMATCH.CHE");
@@ -130,9 +132,9 @@
130132 } else {
131133 Main.mesg_box(this,
132134 java.util.ResourceBundle.getBundle(
133- "chexaformation/resource").getString("loadCHE"),
135+ "chexaformation/resource").getString("loadCHE"),
134136 java.util.ResourceBundle.getBundle(
135- "chexaformation/resource").
137+ "chexaformation/resource").
136138 getString("errNotMatchData"),
137139 ifile.getAbsolutePath());
138140 }
@@ -139,9 +141,9 @@
139141 } else {
140142 Main.mesg_box(this,
141143 java.util.ResourceBundle.getBundle(
142- "chexaformation/resource").getString("loadCHE"),
144+ "chexaformation/resource").getString("loadCHE"),
143145 java.util.ResourceBundle.getBundle(
144- "chexaformation/resource").getString("faileReadCHE"),
146+ "chexaformation/resource").getString("faileReadCHE"),
145147 ifile.getAbsolutePath());
146148 }
147149 }
--- chexaFormation/trunk/src/chexaformation/mesgPanel.java (revision 5)
+++ chexaFormation/trunk/src/chexaformation/mesgPanel.java (revision 6)
@@ -14,7 +14,9 @@
1414 */
1515 public class mesgPanel extends javax.swing.JPanel {
1616
17- /** Creates new form mesgPanel */
17+ /**
18+ * Creates new form mesgPanel
19+ */
1820 public mesgPanel() {
1921 initComponents();
2022 }
@@ -21,6 +23,7 @@
2123
2224 /**
2325 * 一行目のラベルコントロールを取得
26+ *
2427 * @return ラベル
2528 */
2629 public JLabel getMesg1() {
@@ -29,6 +32,7 @@
2932
3033 /**
3134 * 二行目のラベルコントロールを取得
35+ *
3236 * @return ラベル
3337 */
3438 public JLabel getMesg2() {
@@ -35,10 +39,10 @@
3539 return mesg2;
3640 }
3741
38- /** This method is called from within the constructor to
39- * initialize the form.
40- * WARNING: Do NOT modify this code. The content of this method is
41- * always regenerated by the Form Editor.
42+ /**
43+ * This method is called from within the constructor to initialize the form.
44+ * WARNING: Do NOT modify this code. The content of this method is always
45+ * regenerated by the Form Editor.
4246 */
4347 @SuppressWarnings("unchecked")
4448 // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
--- chexaFormation/trunk/src/chexaformation/confirmPanel.java (revision 5)
+++ chexaFormation/trunk/src/chexaformation/confirmPanel.java (revision 6)
@@ -16,7 +16,9 @@
1616
1717 boolean bconfirm;
1818
19- /** Creates new form mesgPanel */
19+ /**
20+ * Creates new form mesgPanel
21+ */
2022 public confirmPanel() {
2123 bconfirm = false;
2224 initComponents();
@@ -24,6 +26,7 @@
2426
2527 /**
2628 * 一行目のラベルコントロールを取得
29+ *
2730 * @return ラベル
2831 */
2932 public JLabel getMesg1() {
@@ -32,6 +35,7 @@
3235
3336 /**
3437 * 二行目のラベルコントロールを取得
38+ *
3539 * @return ラベル
3640 */
3741 public JLabel getMesg2() {
@@ -40,6 +44,7 @@
4044
4145 /**
4246 * 押した確認ボタンを取得
47+ *
4348 * @return YESボタンを押したときにはtrue
4449 */
4550 public boolean isConfirm() {
@@ -46,10 +51,10 @@
4651 return bconfirm;
4752 }
4853
49- /** This method is called from within the constructor to
50- * initialize the form.
51- * WARNING: Do NOT modify this code. The content of this method is
52- * always regenerated by the Form Editor.
54+ /**
55+ * This method is called from within the constructor to initialize the form.
56+ * WARNING: Do NOT modify this code. The content of this method is always
57+ * regenerated by the Form Editor.
5358 */
5459 @SuppressWarnings("unchecked")
5560 // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents