Subversion Repositories Projects

Rev

Rev 1545 | Go to most recent revision | 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
 
5
 
6
public class DebugRequestFrame extends RequestFrame {
7
	private int autoSendInterval;
8
 
1545 - 9
	public DebugRequestFrame(int address) {
1540 - 10
		super(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
	public void accept(RequestFrameVisitor o) throws IOException {
22
		o.visit(this);
23
	}
24
}