mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
19 lines
443 B
Java
19 lines
443 B
Java
// "Create field for parameter 'length'" "true-preview"
|
|
|
|
package codeInsight.createFieldFromParameterAction.test1;
|
|
|
|
import java.util.HashMap;
|
|
|
|
public class TestBefore {
|
|
private String myName;
|
|
private final HashMap myTest;
|
|
private String myPerson;
|
|
|
|
public TestBefore(String name, int length<caret>, HashMap test, String person) {
|
|
super();
|
|
myName = name;
|
|
myTest = test;
|
|
myPerson = person;
|
|
}
|
|
}
|