Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1611 | - | 1 | package dongfang.mkt.configuration; |
2 | |||
3 | import java.util.ArrayList; |
||
4 | import java.util.List; |
||
5 | |||
6 | |||
7 | public class ParameterSection { |
||
8 | String name, title; |
||
9 | List<ParameterEntry> entries = new ArrayList<ParameterEntry>(); |
||
10 | |||
11 | public ParameterSection(String name, String title) { |
||
12 | this.name = name; |
||
13 | this.title = title; |
||
14 | } |
||
15 | |||
16 | public void addConfigEntry(ParameterEntry e) { |
||
17 | this.entries.add(e); |
||
18 | } |
||
19 | |||
20 | public List<ParameterEntry> getEntries() { |
||
21 | return entries; |
||
22 | } |
||
23 | |||
24 | public String getName() { |
||
25 | return name; |
||
26 | } |
||
27 | |||
28 | public String getTitle() { |
||
29 | return title; |
||
30 | } |
||
31 | } |