Rev 1535 | Rev 1564 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1535 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | import java.io.IOException; |
||
4 | |||
5 | import dongfang.mkt.RequestFrameVisitor; |
||
6 | |||
7 | public class AnalogDebugLabelRequestFrame extends RequestFrame { |
||
8 | int channel; |
||
9 | |||
1545 | - | 10 | public AnalogDebugLabelRequestFrame(int address, int channel) { |
1535 | - | 11 | super(address); |
12 | this.channel = channel; |
||
13 | } |
||
14 | |||
15 | public int getChannel() { |
||
16 | return channel; |
||
17 | } |
||
18 | |||
19 | public void accept(RequestFrameVisitor o) throws IOException { |
||
20 | o.visit(this); |
||
21 | } |
||
22 | } |