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