Subversion Repositories Projects

Rev

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