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