Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 1573 → Rev 1601

/dongfang_FC_rewrite_tool/src/dongfang/mkt/frames/UniversalReadParamSetResponseFrame.java
3,6 → 3,7
public class UniversalReadParamSetResponseFrame extends ResponseFrame {
private int configurationSetNumber;
private int configurationVersion;
private int length;
private int[] data;
 
public UniversalReadParamSetResponseFrame(int address) {
30,6 → 31,14
this.configurationVersion = configurationVersion;
}
 
public int getConfigurationSetLength() {
return length;
}
 
public void setConfigurationSetLength(int configurationSetLength) {
this.length = configurationSetLength;
}
 
public int[] getData() {
return data;
}