mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 18:20:52 +07:00
15 lines
266 B
Java
15 lines
266 B
Java
// "Create field for parameter 'name'" "true-preview"
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class TestBefore {
|
|
|
|
@NotNull
|
|
private final String myName;
|
|
|
|
public TestBefore(@NotNull String name) {
|
|
super();
|
|
myName = name;
|
|
}
|
|
}
|