mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 20:39:40 +07:00
19 lines
435 B
Java
19 lines
435 B
Java
// "Create Field For Parameter 'length'" "true"
|
|
|
|
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;
|
|
}
|
|
}
|