Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1535 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | import java.io.IOException; |
||
4 | |||
5 | import dongfang.mkt.RequestFrameVisitor; |
||
6 | |||
7 | public class UniversalReadParamSetRequestFrame extends RequestFrame { |
||
8 | private int configurationSetNumber; |
||
9 | |||
10 | public UniversalReadParamSetRequestFrame() { |
||
11 | super(FC_ADDRESS); |
||
12 | } |
||
13 | |||
14 | @Override |
||
15 | public void accept(RequestFrameVisitor o) throws IOException { |
||
16 | o.visit(this); |
||
17 | } |
||
18 | |||
19 | public int getConfigurationSetNumber() { |
||
20 | return configurationSetNumber; |
||
21 | } |
||
22 | |||
23 | public void setConfigurationSetNumber(int number) { |
||
24 | this.configurationSetNumber = number; |
||
25 | } |
||
26 | } |