View Javadoc

1   /*
2    * Copyright 2007-2008 the original author or authors.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  
17  package org.gwe.integration.slicer.model;
18  
19  import java.util.ArrayList;
20  import java.util.List;
21  
22  /**
23   * @author Marco Ruiz
24   * @since Dec 14, 2007
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