Subversion Repositories Projects

Rev

Rev 1566 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1566 Rev 1611
1
package dongfang.mkt.frames;
1
package dongfang.mkt.frames;
2
 
2
 
3
import java.io.IOException;
3
import java.io.IOException;
4
 
4
 
5
import dongfang.mkt.RequestFrameVisitor;
5
import dongfang.mkt.RequestFrameVisitor;
6
 
6
 
7
 
7
 
8
public class ReadParamSetRequestFrame extends RequestFrame {
8
public class ReadParamSetRequestFrame extends RequestFrame {
-
 
9
        private int configurationSetNumber;
-
 
10
 
9
        ReadParamSetRequestFrame(int address) {
11
        public ReadParamSetRequestFrame() {
10
                super(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 {
-
 
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;
15
        }
26
        }
16
}
27
}
17
 
28