Rev 1564 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1559 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | import java.io.IOException; |
||
4 | |||
5 | import dongfang.mkt.RequestFrameVisitor; |
||
6 | |||
7 | public class OSDDataRequestFrame extends RequestFrame { |
||
8 | private int autoSendInterval; |
||
9 | |||
10 | public OSDDataRequestFrame() { |
||
11 | super(NC_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 | @Override |
||
23 | public void accept(RequestFrameVisitor o) throws IOException { |
||
24 | o.visit(this); |
||
25 | } |
||
26 | } |