Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 1695 → Rev 1696

/dongfang_FC_rewrite_tool/src/dongfang/mkt/frames/ProfilerRequestFrame.java
0,0 → 1,26
package dongfang.mkt.frames;
 
import java.io.IOException;
 
import dongfang.mkt.RequestFrameVisitor;
 
 
public class ProfilerRequestFrame extends RequestFrame {
private int autoSendInterval;
 
public ProfilerRequestFrame(int address) {
super(address);
}
 
public int getAutoSendInterval() {
return autoSendInterval;
}
public void setAutoSendInterval(int autoSendInterval) {
this.autoSendInterval = autoSendInterval;
}
 
public void accept(RequestFrameVisitor o) throws IOException {
o.visit(this);
}
}