Annotation Interface NoHint


@Retention(RUNTIME) @Target({METHOD,FIELD}) public @interface NoHint
Methods annotated with @NoHint are ignored by PropertiesFileDocProvider. (thus, will not show up in the script hint auto-complete list), but otherwise obey the typical Jython exposure rules.

In other words, the method is still available to be called, for backwards compatibility, but not (easily) visible to end users.

This is distinct from throwing PyIgnoreMethodTag, which is used for a public method that cannot be called from Jython at all.

See Also: