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
Given a private static field:
private static String DEFAULT_NAME = "World";
calling the generate getters and setters command generate its accessors:
generate getters and setters
/** * @return the dEFAULT_NAME */ public static String getDEFAULT_NAME() { return DEFAULT_NAME; } /** * @param dEFAULT_NAME the dEFAULT_NAME to set */ public static void setDEFAULT_NAME(String dEFAULT_NAME) { DEFAULT_NAME = dEFAULT_NAME; }
I'm pretty confident that's wrong in 99.99% of the cases
The text was updated successfully, but these errors were encountered:
@testforstephen any chance you can fix it before we release on Monday?
Sorry, something went wrong.
will submit a PR today.
Well, the eclipse does provide the option to generate getter/setter for this situation.
Given this, one improvement that we can do is similar to this #900 that we provide two phases code assist.
please open a separate ticket for that.
No branches or pull requests
Given a private static field:
calling the
generate getters and setters
command generate its accessors:I'm pretty confident that's wrong in 99.99% of the cases
The text was updated successfully, but these errors were encountered: