Issue 489 update the port
[zxing.git] / csharp / qrcode / encoder / BlockPair.cs
1 /*\r
2 * Copyright 2008 ZXing authors\r
3 *\r
4 * Licensed under the Apache License, Version 2.0 (the "License");\r
5 * you may not use this file except in compliance with the License.\r
6 * You may obtain a copy of the License at\r
7 *\r
8 *      http://www.apache.org/licenses/LICENSE-2.0\r
9 *\r
10 * Unless required by applicable law or agreed to in writing, software\r
11 * distributed under the License is distributed on an "AS IS" BASIS,\r
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13 * See the License for the specific language governing permissions and\r
14 * limitations under the License.\r
15 */\r
16 using System;\r
17 using ByteArray = com.google.zxing.common.ByteArray;\r
18 namespace com.google.zxing.qrcode.encoder\r
19 {\r
20         \r
21         sealed class BlockPair\r
22         {\r
23                 public ByteArray DataBytes\r
24                 {\r
25                         get\r
26                         {\r
27                                 return dataBytes;\r
28                         }\r
29                         \r
30                 }\r
31                 public ByteArray ErrorCorrectionBytes\r
32                 {\r
33                         get\r
34                         {\r
35                                 return errorCorrectionBytes;\r
36                         }\r
37                         \r
38                 }\r
39                 \r
40                 //UPGRADE_NOTE: Final was removed from the declaration of 'dataBytes '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
41                 private ByteArray dataBytes;\r
42                 //UPGRADE_NOTE: Final was removed from the declaration of 'errorCorrectionBytes '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
43                 private ByteArray errorCorrectionBytes;\r
44                 \r
45                 internal BlockPair(ByteArray data, ByteArray errorCorrection)\r
46                 {\r
47                         dataBytes = data;\r
48                         errorCorrectionBytes = errorCorrection;\r
49                 }\r
50         }\r
51 }