Subversion Repositories Projects

Rev

Rev 1564 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1535 - 1
package dongfang.mkt.frames;
2
 
3
import java.io.IOException;
4
 
1566 - 5
import dongfang.mkt.RequestFrameVisitor;
1535 - 6
 
1566 - 7
 
1535 - 8
public class UniversalReadParamSetRequestFrame extends RequestFrame {
9
        private int configurationSetNumber;
10
 
11
        public UniversalReadParamSetRequestFrame() {
12
                super(FC_ADDRESS);
13
        }
14
 
15
        @Override
16
        public void accept(RequestFrameVisitor o) throws IOException {
17
                o.visit(this);
18
        }
19
 
20
        public int getConfigurationSetNumber() {
21
                return configurationSetNumber;
22
        }
23
 
24
        public void setConfigurationSetNumber(int number) {
25
                this.configurationSetNumber = number;
26
        }
27
}