Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 1610 → Rev 1611

/dongfang_FC_rewrite_tool/src/dongfang/mkt/frames/ReadIMUConfigurationResponseFrame.java
0,0 → 1,40
package dongfang.mkt.frames;
 
public class ReadIMUConfigurationResponseFrame extends ResponseFrame {
private int configurationVersion;
private int length;
private int[] data;
 
public ReadIMUConfigurationResponseFrame(int address) {
super(address);
}
 
@Override
public boolean isResponseTo(RequestFrame r) {
return r instanceof ReadIMUConfigurationRequestFrame;
}
 
public int getConfigurationVersion() {
return configurationVersion;
}
 
public void setConfigurationVersion(int configurationVersion) {
this.configurationVersion = configurationVersion;
}
 
public int getConfigurationSetLength() {
return length;
}
 
public void setConfigurationSetLength(int configurationSetLength) {
this.length = configurationSetLength;
}
 
public int[] getData() {
return data;
}
 
public void setData(int[] data) {
this.data = data;
}
}