Rev 1564 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1559 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | import java.io.IOException; |
||
4 | |||
1566 | - | 5 | import dongfang.mkt.RequestFrameVisitor; |
1559 | - | 6 | |
1566 | - | 7 | |
1559 | - | 8 | public class ReadExternalControlRequestFrame extends RequestFrame { |
9 | |||
10 | public ReadExternalControlRequestFrame(int address) { |
||
11 | super(address); |
||
12 | } |
||
13 | |||
14 | @Override |
||
15 | public void accept(RequestFrameVisitor o) throws IOException { |
||
16 | o.visit(this); |
||
17 | } |
||
18 | } |