New C# port from Suraj Supekar
[zxing.git] / csharp / client / result / ProductParsedResult.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.client.result\r
18 {\r
19         \r
20         /// <author>  dswitkin@google.com (Daniel Switkin)\r
21         /// </author>\r
22         /// <author>www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source \r
23         /// </author>\r
24         public sealed class ProductParsedResult:ParsedResult\r
25         {\r
26                 public System.String ProductID\r
27                 {\r
28                         get\r
29                         {\r
30                                 return productID;\r
31                         }\r
32                         \r
33                 }\r
34                 public System.String NormalizedProductID\r
35                 {\r
36                         get\r
37                         {\r
38                                 return normalizedProductID;\r
39                         }\r
40                         \r
41                 }\r
42                 override public System.String DisplayResult\r
43                 {\r
44                         get\r
45                         {\r
46                                 return productID;\r
47                         }\r
48                         \r
49                 }\r
50                 \r
51                 //UPGRADE_NOTE: Final was removed from the declaration of 'productID '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
52                 private System.String productID;\r
53                 //UPGRADE_NOTE: Final was removed from the declaration of 'normalizedProductID '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
54                 private System.String normalizedProductID;\r
55                 \r
56                 internal ProductParsedResult(System.String productID):this(productID, productID)\r
57                 {\r
58                 }\r
59                 \r
60                 internal ProductParsedResult(System.String productID, System.String normalizedProductID):base(ParsedResultType.PRODUCT)\r
61                 {\r
62                         this.productID = productID;\r
63                         this.normalizedProductID = normalizedProductID;\r
64                 }\r
65         }\r
66 }