Issue 489 update the port
[zxing.git] / csharp / client / result / SMSParsedResult.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 namespace com.google.zxing.client.result\r
18 {\r
19         \r
20         /// <author>  Sean Owen\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 SMSParsedResult:ParsedResult\r
25         {\r
26                 public System.String SMSURI\r
27                 {\r
28                         get\r
29                         {\r
30                                 return smsURI;\r
31                         }\r
32                         \r
33                 }\r
34                 public System.String Number\r
35                 {\r
36                         get\r
37                         {\r
38                                 return number;\r
39                         }\r
40                         \r
41                 }\r
42                 public System.String Via\r
43                 {\r
44                         get\r
45                         {\r
46                                 return via;\r
47                         }\r
48                         \r
49                 }\r
50                 public System.String Subject\r
51                 {\r
52                         get\r
53                         {\r
54                                 return subject;\r
55                         }\r
56                         \r
57                 }\r
58                 public System.String Body\r
59                 {\r
60                         get\r
61                         {\r
62                                 return body;\r
63                         }\r
64                         \r
65                 }\r
66                 public System.String Title\r
67                 {\r
68                         get\r
69                         {\r
70                                 return title;\r
71                         }\r
72                         \r
73                 }\r
74                 override public System.String DisplayResult\r
75                 {\r
76                         get\r
77                         {\r
78                                 System.Text.StringBuilder result = new System.Text.StringBuilder(100);\r
79                                 maybeAppend(number, result);\r
80                                 maybeAppend(via, result);\r
81                                 maybeAppend(subject, result);\r
82                                 maybeAppend(body, result);\r
83                                 maybeAppend(title, result);\r
84                                 return result.ToString();\r
85                         }\r
86                         \r
87                 }\r
88                 \r
89                 //UPGRADE_NOTE: Final was removed from the declaration of 'smsURI '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
90                 private System.String smsURI;\r
91                 //UPGRADE_NOTE: Final was removed from the declaration of 'number '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
92                 private System.String number;\r
93                 //UPGRADE_NOTE: Final was removed from the declaration of 'via '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
94                 private System.String via;\r
95                 //UPGRADE_NOTE: Final was removed from the declaration of 'subject '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
96                 private System.String subject;\r
97                 //UPGRADE_NOTE: Final was removed from the declaration of 'body '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
98                 private System.String body;\r
99                 //UPGRADE_NOTE: Final was removed from the declaration of 'title '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
100                 private System.String title;\r
101                 \r
102                 public SMSParsedResult(System.String smsURI, System.String number, System.String via, System.String subject, System.String body, System.String title):base(ParsedResultType.SMS)\r
103                 {\r
104                         this.smsURI = smsURI;\r
105                         this.number = number;\r
106                         this.via = via;\r
107                         this.subject = subject;\r
108                         this.body = body;\r
109                         this.title = title;\r
110                 }\r
111         }\r
112 }