1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.gwe.integration.slicer.model;
18
19 import java.util.ArrayList;
20 import java.util.List;
21
22
23
24
25
26 public class GroupModel {
27 private String label = "";
28 private String description = "";
29 private boolean advanced = false;
30 private List<ParameterModel> parameters = new ArrayList<ParameterModel>();
31
32 public GroupModel(String label, String description) {
33 this.label = label;
34 this.description = description;
35 }
36
37 public GroupModel() {
38 }
39
40 public String getLabel() {
41 return label;
42 }
43
44 public void setLabel(String label) {
45 this.label = label;
46 }
47
48 public String getDescription() {
49 return description;
50 }
51
52 public void setDescription(String description) {
53 this.description = description;
54 }
55
56 public boolean isAdvanced() {
57 return advanced;
58 }
59
60 public void setAdvanced(boolean advanced) {
61 this.advanced = advanced;
62 }
63
64 public List<ParameterModel> getParameters() {
65 return parameters;
66 }
67
68 public <PM_TYPE extends ParameterModel> PM_TYPE addParam(PM_TYPE param) {
69 this.parameters.add(param);
70 return param;
71 }
72 }
73