You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It will create the folder structure for the package you provide, then it will read the json at the url you provide, and output java classes into the folder locally.
17
20
18
-
Each class will implement Parcelable for easy passing of information in Android.
21
+
Each class will implement Parcelable for easy passing of information in Android (optional).
19
22
Each class will have a default empty constructor.
20
23
The members of each class will follow Android naming conventions with an "m" prefix and camel case.
21
-
Each member will have a corresponding static final String that relates it to it's json counterpart
22
-
Each member will have a @SerializedName annotation for very easy Gson parsing.
24
+
Each member will have a corresponding static final String that relates it to it's json counterpart
25
+
Each member will have a @SerializedName annotation for very easy Gson parsing. (optional)
23
26
If a member called "mId" or "mUniqueId" is found, then equals and hashcode will be overridden so comparisons are made on the id.
24
27
25
28
<h3>What I want this tool to do in the future in no particular order</h3>
0 commit comments