Subversion Repositories Projects

Rev

Rev 1564 | 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 AnalogDebugLabelRequestFrame extends RequestFrame {
        int channel;
       
        AnalogDebugLabelRequestFrame(int address, int channel) {
                super(address);
                this.channel = channel;
        }

        public int getChannel() {
                return channel;
        }
       
        public void accept(RequestFrameVisitor o) throws IOException {
                o.visit(this);
        }
}