Rev 1564 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
package dongfang.mkt.frames;
import java.io.IOException;
import dongfang.mkt.RequestFrameVisitor;
public class AttitudeDataRequestFrame
extends RequestFrame
{
private int autoSendInterval
;
public AttitudeDataRequestFrame
(int autoSendInterval
) {
super(FC_ADDRESS
);
this.
autoSendInterval = autoSendInterval
;
}
public void accept
(RequestFrameVisitor o
) throws IOException {
o.
visit(this);
}
public int getAutoSendInterval
() {
return autoSendInterval
;
}
}