deprecate @JetConstructor.hidden

and add missing hidden field
This commit is contained in:
Stepan Koltsov
2012-01-09 19:58:47 +04:00
parent 472ec42b19
commit 5645bb3c92
2 changed files with 10 additions and 1 deletions
@@ -4,4 +4,8 @@ package jet.runtime.typeinfo;
* @author Stepan Koltsov
*/
public @interface JetConstructor {
/**
* @deprecated Some time later all constructors will be visible
*/
boolean hidden() default false;
}