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
Hovering "OK" shows the type and name of the constant:
It would be much better if it also showed its value, the definition of the constant in this case is as follows: public static final int OK = 0;
public static final int OK = 0;
so it would be much better if the tooltip showed: int OK = 0
int OK = 0
at least for primitive types and maybe for strings which could get truncated if too long.
The text was updated successfully, but these errors were encountered:
Indeed, JDT UI supports that feature https://www.eclipse.org/eclipse/news/4.11/jdt.php#default-constant-values Hopefully it should be easy to implement
Sorry, something went wrong.
snjeza
Successfully merging a pull request may close this issue.
Hovering "OK" shows the type and name of the constant:
It would be much better if it also showed its value, the definition of the constant in this case is as follows:
public static final int OK = 0;
so it would be much better if the tooltip showed:
int OK = 0
at least for primitive types and maybe for strings which could get truncated if too long.
The text was updated successfully, but these errors were encountered: