Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1541 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | public class SetCompassHeadingResponseFrame extends ResponseFrame { |
||
4 | public SetCompassHeadingResponseFrame(int address) { |
||
5 | super(address); |
||
6 | } |
||
7 | |||
8 | @Override |
||
9 | public boolean isResponseTo(RequestFrame r) { |
||
10 | return r instanceof SetCompassHeadingRequestFrame; |
||
11 | } |
||
12 | } |