mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
21 lines
495 B
Java
21 lines
495 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 int myLength;
|
|
private final HashMap myTest;
|
|
private String myPerson;
|
|
|
|
public TestBefore(String name, int length, HashMap test, String person) {
|
|
super();
|
|
myName = name;
|
|
myLength = length;
|
|
myTest = test;
|
|
myPerson = person;
|
|
}
|
|
}
|