Blame |
Last modification |
View Log
| RSS feed
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);
}
}