I'm working on another language compiler to java. In order for it to work correctly, I needed to generate some extra fields and methods, which need to be public so they can be accessed from anywhere.
Is there any way I can annotate a field to do not appear in auto-completion, so it doesn't clutter with useless (for the end-user) fields?
Something like System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never) on .NET (reference : Is it possible to hide a field (or just manipulate/hide from autocomplete) within its own class? )
Thank you!