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