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
;
}
}