mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 12:18:27 +07:00
GitOrigin-RevId: 6bf4085d54fdebb2ea7ba0ea5c544e8a8291ced8
17 lines
384 B
Java
17 lines
384 B
Java
// "Create field for parameter 'test'" "true-preview"
|
|
|
|
package codeInsight.createFieldFromParameterAction.test1;
|
|
|
|
import java.util.HashMap;
|
|
|
|
public class TestBefore {
|
|
private String myName;
|
|
private String myPerson;
|
|
|
|
public TestBefore(String name, int length, HashMap test<caret>, String person) {
|
|
super();
|
|
myName = name;
|
|
myPerson = person;
|
|
}
|
|
}
|