You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
407 B
21 lines
407 B
package com.fr.design.parameter; |
|
|
|
import com.fr.base.Parameter; |
|
|
|
public class ParameterGroup { |
|
private String groupName; |
|
private Parameter[] parameters; |
|
|
|
public ParameterGroup(String groupName, Parameter[] parameters) { |
|
this.groupName = groupName; |
|
this.parameters = parameters; |
|
} |
|
|
|
public String getGroupName() { |
|
return groupName; |
|
} |
|
|
|
public Parameter[] getParameter() { |
|
return parameters; |
|
} |
|
} |