Subversion Repositories Projects

Rev

Rev 1566 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1566 Rev 1573
Line 4... Line 4...
4
 
4
 
Line 5... Line 5...
5
import dongfang.mkt.RequestFrameVisitor;
5
import dongfang.mkt.RequestFrameVisitor;
-
 
6
 
6
 
7
 
7
 
8
public class UniversalWriteParamSetRequestFrame extends RequestFrame {
8
public class UniversalWriteParamSetRequestFrame extends RequestFrame {
9
        private char[] name;
Line 9... Line 10...
9
        private int[] data;
10
        private int[] data;
10
        private int configurationSetNumber;
11
        private int configurationSetNumber;
11
        private int configurationVersionNumber;
12
        private int configurationVersionNumber;
-
 
13
       
12
       
14
        public UniversalWriteParamSetRequestFrame(int configurationVersionNumber, char[] name, int[] data) {
13
        public UniversalWriteParamSetRequestFrame(int configurationVersionNumber, int[] data) {
15
                super(FC_ADDRESS);
Line 14... Line 16...
14
                super(FC_ADDRESS);
16
                this.configurationVersionNumber = configurationVersionNumber;
15
                this.configurationVersionNumber = configurationVersionNumber;
17
                this.name = name;
Line 34... Line 36...
34
        }
36
        }
Line 35... Line 37...
35
 
37
 
36
        public int getDataLength() {
38
        public int getDataLength() {
37
                return data.length;
39
                return data.length;
38
        }
40
        }
39
       
41
 
40
        public int[] getData() {
42
        public int[] getData() {
41
                return data;
43
                return data;
-
 
44
        }
-
 
45
 
-
 
46
        public char[] getName() {
-
 
47
                return name;
42
        }
48
        }