Subversion Repositories Projects

Rev

Rev 1545 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package dongfang.mkt.frames;

import java.io.IOException;

import dongfang.mkt.RequestFrameVisitor;

public class DebugRequestFrame extends RequestFrame {
        private int autoSendInterval;

        DebugRequestFrame(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);
        }
}