Subversion Repositories Projects

Rev

Rev 1535 | 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
 
5
 
6
public class UniversalReadParamSetRequestFrame extends RequestFrame {
7
        private int configurationSetNumber;
8
 
9
        public UniversalReadParamSetRequestFrame() {
10
                super(FC_ADDRESS);
11
        }
12
 
13
        @Override
14
        public void accept(RequestFrameVisitor o) throws IOException {
15
                o.visit(this);
16
        }
17
 
18
        public int getConfigurationSetNumber() {
19
                return configurationSetNumber;
20
        }
21
 
22
        public void setConfigurationSetNumber(int number) {
23
                this.configurationSetNumber = number;
24
        }
25
}