Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 1539 → Rev 1540

/dongfang_FC_rewrite_tool/src/dongfang/mkt/frames/LoopbackTestRequestFrame.java
0,0 → 1,44
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;
}
}