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