mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
12 lines
267 B
Java
12 lines
267 B
Java
// "Bind Constructor Parameters to Fields" "true"
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
public class TestBefore {
|
|
|
|
public TestBefore(@Nullable String name<caret>, @Nullable String name2) {
|
|
super();
|
|
}
|
|
}
|