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. Throw PyIgnoreMethodTag if you need a public method that cannot be called from Jython.
See Also: