質問編集履歴

1

コメントを修正

2016/11/01 05:04

投稿

cha-ra
cha-ra

スコア40

test CHANGED
File without changes
test CHANGED
@@ -24,7 +24,7 @@
24
24
 
25
25
  public enum Action {
26
26
 
27
- /** 削除ボタン処理 */
27
+ /** 削除ボタン処理 <- Action$1.class */
28
28
 
29
29
  DELETE() {
30
30
 
@@ -50,7 +50,7 @@
50
50
 
51
51
  },
52
52
 
53
- /** 登録ボタン処理 */
53
+ /** 登録ボタン処理 <- Action$2.class */
54
54
 
55
55
  COMMIT() {
56
56
 
@@ -76,7 +76,7 @@
76
76
 
77
77
  },
78
78
 
79
- /** 戻るボタン処理 */
79
+ /** 戻るボタン処理 <- Action$3.class */
80
80
 
81
81
  @Override
82
82
 
@@ -93,6 +93,8 @@
93
93
  ;
94
94
 
95
95
 
96
+
97
+ /** Constructor <- Action.class */
96
98
 
97
99
  private Action() {
98
100