Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1535 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | |||
4 | public class AnalogDebugLabelResponseFrame extends ResponseFrame { |
||
5 | // public static final char ID = RESPONSE_IDS.ANALOG_DEBUG_LABEL.getId(); |
||
6 | private int channel; |
||
7 | private char[] label; |
||
8 | |||
9 | public AnalogDebugLabelResponseFrame(int address) { |
||
10 | super(address); |
||
11 | } |
||
12 | |||
13 | @Override |
||
14 | public boolean isResponseTo(RequestFrame r) { |
||
15 | return r instanceof AnalogDebugLabelRequestFrame |
||
16 | && ((AnalogDebugLabelRequestFrame)r).getChannel() == channel; |
||
17 | } |
||
18 | |||
19 | public int getChannel() { |
||
20 | return channel; |
||
21 | } |
||
22 | |||
23 | public void setChannel(int channel) { |
||
24 | this.channel = channel; |
||
25 | } |
||
26 | |||
27 | public char[] getLabel() { |
||
28 | return label; |
||
29 | } |
||
30 | |||
31 | public String getLabelAsString() { |
||
32 | return new String(label); |
||
33 | } |
||
34 | |||
35 | public void setLabel(char[] label) { |
||
36 | this.label = label; |
||
37 | } |
||
38 | |||
39 | public String toString() { |
||
40 | return getClass().getSimpleName() + ": label=" + getLabelAsString(); |
||
41 | } |
||
42 | } |