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