Subversion Repositories Projects

Rev

Rev 1564 | 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 AttitudeDataRequestFrame extends RequestFrame {
8
        private int autoSendInterval;
9
 
10
        public AttitudeDataRequestFrame(int autoSendInterval) {
11
                super(FC_ADDRESS);
12
                this.autoSendInterval = autoSendInterval;
13
        }
14
 
15
        public void accept(RequestFrameVisitor o) throws IOException {
16
                o.visit(this);
17
        }
18
 
19
        public int getAutoSendInterval() {
20
                return autoSendInterval;
21
        }
22
}