blob: a768435e28c5edcd2e390c940868fcf346fca32e [file] [log] [blame]
// "Create Field for Parameter 'length'" "true"
package codeInsight.createFieldFromParameterAction.test1;
public class TestBefore {
private String myName;
private final HashMap myTest;
private String myPerson;
private final int length
public TestBefore(String name, int length, HashMap test, String person) {
super();
this.length = length
myName = name;
myTest = test;
myPerson = person;
}
}