We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It'll be nice to support field annotations like IntDef annotations.
IntDef
Eg. I want that this field
@Navigation.NavSection @DefaultInt(Navigatory.DEFAULT_NAV_SECTION) //DEFAULT_NAV_SECTION == 666 Integer currentNavItem;
will generate
@Navigation.NavSection public Integer getCurrentNavItem() { if (!contains("currentNavItem")) return 666; //btw - is this line necessary? return getInt("currentNavItem", 666); } public boolean containsCurrentNavItem() { return contains("currentNavItem"); } public SharedPrefs putCurrentNavItem(@Navigation.NavSection Integer currentNavItem) { edit().putCurrentNavItem(currentNavItem).apply(); return this; } public SharedPrefs removeCurrentNavItem() { edit().remove("currentNavItem").apply(); return this; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It'll be nice to support field annotations like
IntDef
annotations.Eg. I want that this field
will generate
The text was updated successfully, but these errors were encountered: