Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1688 | - | 1 | package dongfang.mkt.frames; |
2 | |||
3 | public class WriteMotorMixerResponseFrame extends ResponseFrame { |
||
4 | private boolean wasAccepted; |
||
5 | |||
6 | public WriteMotorMixerResponseFrame(int address) { |
||
7 | super(address); |
||
8 | } |
||
9 | |||
10 | @Override |
||
11 | public boolean isResponseTo(RequestFrame r) { |
||
12 | return r instanceof WriteMotorMixerRequestFrame; |
||
13 | } |
||
14 | |||
15 | public boolean wasAccepted() { |
||
16 | return wasAccepted; |
||
17 | } |
||
18 | |||
19 | public void setWasAccepted(boolean wasAccepted) { |
||
20 | this.wasAccepted = wasAccepted; |
||
21 | } |
||
22 | } |