Rev 1566 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1566 | Rev 1611 | ||
---|---|---|---|
Line 4... | Line 4... | ||
4 | 4 | ||
Line 5... | Line 5... | ||
5 | import dongfang.mkt.RequestFrameVisitor; |
5 | import dongfang.mkt.RequestFrameVisitor; |
- | 6 | ||
- | 7 | ||
6 | 8 | public class ReadParamSetRequestFrame extends RequestFrame { |
|
7 | 9 | private int configurationSetNumber; |
|
8 | public class ReadParamSetRequestFrame extends RequestFrame { |
10 | |
Line 9... | Line 11... | ||
9 | ReadParamSetRequestFrame(int address) { |
11 | public ReadParamSetRequestFrame() { |
10 | super(address); |
12 | super(FC_ADDRESS); |
- | 13 | } |
|
- | 14 | ||
- | 15 | @Override |
|
- | 16 | public void accept(RequestFrameVisitor o) throws IOException { |
|
- | 17 | o.visit(this); |
|
- | 18 | } |
|
- | 19 | ||
- | 20 | public int getConfigurationSetNumber() { |
|
- | 21 | return configurationSetNumber; |
|
11 | } |
22 | } |
12 | 23 |