Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1535 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | public class UniversalReadParamSetResponseFrame extends ResponseFrame { |
||
4 | private int configurationSetNumber; |
||
5 | private int configurationVersion; |
||
6 | private int[] data; |
||
7 | |||
8 | public UniversalReadParamSetResponseFrame(int address) { |
||
9 | super(address); |
||
10 | } |
||
11 | |||
12 | @Override |
||
13 | public boolean isResponseTo(RequestFrame r) { |
||
14 | return r instanceof UniversalReadParamSetRequestFrame; |
||
15 | } |
||
16 | |||
17 | public int getConfigurationSetNumber() { |
||
18 | return configurationSetNumber; |
||
19 | } |
||
20 | |||
21 | public void setConfigurationSetNumber(int configurationSetNumber) { |
||
22 | this.configurationSetNumber = configurationSetNumber; |
||
23 | } |
||
24 | |||
25 | public int getConfigurationVersion() { |
||
26 | return configurationVersion; |
||
27 | } |
||
28 | |||
29 | public void setConfigurationVersion(int configurationVersion) { |
||
30 | this.configurationVersion = configurationVersion; |
||
31 | } |
||
32 | |||
33 | public int[] getData() { |
||
34 | return data; |
||
35 | } |
||
36 | |||
37 | public void setData(int[] data) { |
||
38 | this.data = data; |
||
39 | } |
||
40 | } |