Subversion Repositories Projects

Rev

Rev 1564 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package dongfang.mkt.frames;

import java.io.IOException;

import dongfang.mkt.RequestFrameVisitor;


public class LoopbackTestRequestFrame extends RequestFrame {
        int _byte;
        int word;
        char[] chararray;

        LoopbackTestRequestFrame(int address) {
                super(address);
        }

        @Override
        public void accept(RequestFrameVisitor o) throws IOException {
                o.visit(this);
        }

        public int getByte() {
                return _byte;
        }

        public void setByte(int _byte) {
                this._byte = _byte;
        }

        public int getWord() {
                return word;
        }

        public void setWord(int _word) {
                this.word = _word;
        }

        public char[] getChararray() {
                return chararray;
        }

        public void setChararray(char[] chararray) {
                this.chararray = chararray;
        }
}