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