Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1611 | - | 1 | package dongfang.mkt.configuration; |
2 | |||
3 | public abstract class ParameterEntry { |
||
4 | String name; |
||
5 | |||
6 | ParameterEntry(String name) { |
||
7 | this.name = name; |
||
8 | } |
||
9 | |||
10 | abstract int getByteCount(); |
||
11 | |||
12 | abstract String toStringWithValues(); |
||
13 | |||
14 | abstract void toXML(StringBuilder result); |
||
15 | |||
16 | abstract int setValue(int[] data, int offset); |
||
17 | |||
18 | public String getName() { |
||
19 | return name; |
||
20 | } |
||
21 | |||
22 | public String getSection() { |
||
23 | return name; |
||
24 | } |
||
25 | } |