mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
18 lines
354 B
Java
18 lines
354 B
Java
// "Create field for parameter 'name'" "true-preview"
|
|
|
|
package codeInsight.createFieldFromParameterAction.test1;
|
|
|
|
import java.util.HashMap;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
public class TestBefore {
|
|
|
|
@Nullable
|
|
private final String myName;
|
|
|
|
public TestBefore(@Nullable String name) {
|
|
super();
|
|
myName = name;
|
|
}
|
|
}
|