Subversion Repositories Projects

Rev

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 OSDDataRequestFrame extends RequestFrame {
9
        private int autoSendInterval;
10
 
11
        public OSDDataRequestFrame() {
12
                super(NC_ADDRESS);
13
        }
14
 
15
        public int getAutoSendInterval() {
16
                return autoSendInterval;
17
        }
18
 
19
        public void setAutoSendInterval(int autoSendInterval) {
20
                this.autoSendInterval = autoSendInterval;
21
        }
22
 
23
        @Override
24
        public void accept(RequestFrameVisitor o) throws IOException {
25
                o.visit(this);
26
        }
27
}