Rev 1545 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1540 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | import java.io.IOException; |
||
4 | |||
5 | import dongfang.mkt.RequestFrameVisitor; |
||
6 | |||
7 | public class DebugRequestFrame extends RequestFrame { |
||
8 | private int autoSendInterval; |
||
9 | |||
10 | DebugRequestFrame(int address) { |
||
11 | super(address); |
||
12 | } |
||
13 | |||
14 | public int getAutoSendInterval() { |
||
15 | return autoSendInterval; |
||
16 | } |
||
17 | |||
18 | public void setAutoSendInterval(int autoSendInterval) { |
||
19 | this.autoSendInterval = autoSendInterval; |
||
20 | } |
||
21 | |||
22 | public void accept(RequestFrameVisitor o) throws IOException { |
||
23 | o.visit(this); |
||
24 | } |
||
25 | } |