Morgan's cosmetic improvement to a translation, and equivalent for other translations...
[zxing.git] / csharp / client / result / BookmarkDoCoMoResultParser.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 using Result = com.google.zxing.Result;\r
18 namespace com.google.zxing.client.result\r
19 {\r
20         \r
21         /// <author>  Sean Owen\r
22         /// </author>\r
23         /// <author>www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source \r
24         /// </author>\r
25         sealed class BookmarkDoCoMoResultParser:AbstractDoCoMoResultParser\r
26         {\r
27                 \r
28                 private BookmarkDoCoMoResultParser()\r
29                 {\r
30                 }\r
31                 \r
32                 public static URIParsedResult parse(Result result)\r
33                 {\r
34                         System.String rawText = result.Text;\r
35                         if (rawText == null || !rawText.StartsWith("MEBKM:"))\r
36                         {\r
37                                 return null;\r
38                         }\r
39                         System.String title = matchSingleDoCoMoPrefixedField("TITLE:", rawText, true);\r
40                         System.String[] rawUri = matchDoCoMoPrefixedField("URL:", rawText, true);\r
41                         if (rawUri == null)\r
42                         {\r
43                                 return null;\r
44                         }\r
45                         System.String uri = rawUri[0];\r
46                         if (!URIResultParser.isBasicallyValidURI(uri))\r
47                         {\r
48                                 return null;\r
49                         }\r
50                         return new URIParsedResult(uri, title);\r
51                 }\r
52         }\r
53 }