Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 1610 → Rev 1611

/dongfang_FC_rewrite_tool/src/dongfang/mkt/frames/ReadParamSetResponseFrame.java
0,0 → 1,49
package dongfang.mkt.frames;
 
public class ReadParamSetResponseFrame extends ResponseFrame {
private int configurationSetNumber;
private int configurationVersion;
private int length;
private int[] data;
 
public ReadParamSetResponseFrame(int address) {
super(address);
}
 
@Override
public boolean isResponseTo(RequestFrame r) {
return r instanceof ReadParamSetRequestFrame;
}
 
public int getConfigurationSetNumber() {
return configurationSetNumber;
}
 
public void setConfigurationSetNumber(int configurationSetNumber) {
this.configurationSetNumber = configurationSetNumber;
}
 
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;
}
}