質問編集履歴

1

記述内容の充実

2016/01/09 17:04

投稿

ipadcaron
ipadcaron

スコア1693

test CHANGED
File without changes
test CHANGED
@@ -131,3 +131,43 @@
131
131
 
132
132
 
133
133
  最終的には、JSON 配列になります。
134
+
135
+
136
+
137
+ Columns.java
138
+
139
+ ```java
140
+
141
+ @Target(ElementType.FIELD)
142
+
143
+ @Retention(RetentionPolicy.RUNTIME)
144
+
145
+ public @interface Columns {
146
+
147
+ // Requires
148
+
149
+ String id();
150
+
151
+
152
+
153
+ // Options
154
+
155
+ String enShortNm() default "";
156
+
157
+ String enLongNm() default "";
158
+
159
+ String jpShortNm() default "";
160
+
161
+ String jpLongNm() default "";
162
+
163
+ String prefix() default "";
164
+
165
+ String suffix() default "";
166
+
167
+
168
+
169
+ }
170
+
171
+
172
+
173
+ ```