Subversion Repositories Projects

Rev

Rev 1564 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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