Subversion Repositories Projects

Rev

Rev 1564 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1540 - 1
package dongfang.mkt.frames;
2
 
3
import java.io.IOException;
4
 
1566 - 5
import dongfang.mkt.RequestFrameVisitor;
1540 - 6
 
1566 - 7
 
1540 - 8
public class DebugRequestFrame extends RequestFrame {
9
        private int autoSendInterval;
10
 
1545 - 11
        public DebugRequestFrame(int address) {
1540 - 12
                super(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
        public void accept(RequestFrameVisitor o) throws IOException {
24
                o.visit(this);
25
        }
26
}