mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 02:38:59 +07:00
12 lines
238 B
Java
12 lines
238 B
Java
// "Add constructor parameter" "true"
|
|
package javax.annotation;
|
|
class A {
|
|
@Nonnull private final Object field;
|
|
|
|
A(@javax.annotation.Nonnull Object field, String... strs) {
|
|
this.field = field;<caret>
|
|
}
|
|
|
|
}
|
|
|
|
@interface Nonnull {} |