Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 1534 → Rev 1535

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