Rev 1564 | 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 | |||
1566 | - | 5 | import dongfang.mkt.RequestFrameVisitor; |
1535 | - | 6 | |
1566 | - | 7 | |
1535 | - | 8 | public class AnalogDebugLabelRequestFrame extends RequestFrame { |
9 | int channel; |
||
10 | |||
1545 | - | 11 | public AnalogDebugLabelRequestFrame(int address, int channel) { |
1535 | - | 12 | super(address); |
13 | this.channel = channel; |
||
14 | } |
||
15 | |||
16 | public int getChannel() { |
||
17 | return channel; |
||
18 | } |
||
19 | |||
20 | public void accept(RequestFrameVisitor o) throws IOException { |
||
21 | o.visit(this); |
||
22 | } |
||
23 | } |