New C# port from Suraj Supekar
[zxing.git] / csharp / qrcode / detector / FinderPatternInfo.cs
1 /*\r
2 * Copyright 2007 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 namespace com.google.zxing.qrcode.detector\r
18 {\r
19         \r
20         /// <summary> <p>Encapsulates information about finder patterns in an image, including the location of\r
21         /// the three finder patterns, and their estimated module size.</p>\r
22         /// \r
23         /// </summary>\r
24         /// <author>  Sean Owen\r
25         /// </author>\r
26         /// <author>www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source \r
27         /// </author>\r
28         public sealed class FinderPatternInfo\r
29         {\r
30                 public FinderPattern BottomLeft\r
31                 {\r
32                         get\r
33                         {\r
34                                 return bottomLeft;\r
35                         }\r
36                         \r
37                 }\r
38                 public FinderPattern TopLeft\r
39                 {\r
40                         get\r
41                         {\r
42                                 return topLeft;\r
43                         }\r
44                         \r
45                 }\r
46                 public FinderPattern TopRight\r
47                 {\r
48                         get\r
49                         {\r
50                                 return topRight;\r
51                         }\r
52                         \r
53                 }\r
54                 \r
55                 //UPGRADE_NOTE: Final was removed from the declaration of 'bottomLeft '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
56                 private FinderPattern bottomLeft;\r
57                 //UPGRADE_NOTE: Final was removed from the declaration of 'topLeft '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
58                 private FinderPattern topLeft;\r
59                 //UPGRADE_NOTE: Final was removed from the declaration of 'topRight '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
60                 private FinderPattern topRight;\r
61                 \r
62                 public FinderPatternInfo(FinderPattern[] patternCenters)\r
63                 {\r
64                         this.bottomLeft = patternCenters[0];\r
65                         this.topLeft = patternCenters[1];\r
66                         this.topRight = patternCenters[2];\r
67                 }\r
68         }\r
69 }