Go ahead and enable Code 93 in android
[zxing.git] / csharp / EncodeHintType.cs
index 3ee58a1..9060bdc 100755 (executable)
@@ -1,4 +1,4 @@
-/*\r
+/*\r
 * Copyright 2008 ZXing authors\r
 *\r
 * Licensed under the Apache License, Version 2.0 (the "License");\r
 * See the License for the specific language governing permissions and\r
 * limitations under the License.\r
 */\r
-namespace com.google.zxing.common\r
+using System;\r
+namespace com.google.zxing\r
 {\r
-    using System;\r
-    using System.Text;\r
+       \r
+       /// <summary> These are a set of hints that you may pass to Writers to specify their behavior.\r
+       /// \r
+       /// </summary>\r
+       /// <author>  dswitkin@google.com (Daniel Switkin)\r
+       /// </author>\r
+       /// <author>www.Redivivus.in (suraj.supekar@redivivus.in) - Ported from ZXING Java Source \r
+       /// </author>\r
 \r
-    /// <summary> A class which wraps a 2D array of bytes. The default usage is signed. If you want to use it as a\r
-    /// unsigned container, it's up to you to do byteValue & 0xff at each location.\r
-    /// *\r
-    /// JAVAPORT: I'm not happy about the argument ordering throughout the file, as I always like to have\r
-    /// the horizontal component first, but this is for compatibility with the C++ code. The original\r
-    /// code was a 2D array of ints, but since it only ever gets assigned -1, 0, and 1, I'm going to use\r
-    /// less memory and go with bytes.\r
-    /// *\r
-    /// </summary>\r
-    /// <author>  dswitkin@google.com (Daniel Switkin)\r
-    /// \r
-    /// </author>\r
-    public sealed class EncodeHintType\r
-    {\r
-          /**\r
-           * Specifies what degree of error correction to use, for example in QR Codes (type Integer).\r
-           */\r
-          public static EncodeHintType ERROR_CORRECTION = new EncodeHintType();\r
-\r
-          private EncodeHintType() {\r
-          }\r
-    \r
-    }\r
+       public sealed class EncodeHintType\r
+       {\r
+               \r
+               /// <summary> Specifies what degree of error correction to use, for example in QR Codes (type Integer).</summary>\r
+               //UPGRADE_NOTE: Final was removed from the declaration of 'ERROR_CORRECTION '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
+               public static readonly EncodeHintType ERROR_CORRECTION = new EncodeHintType();\r
+               \r
+               /// <summary> Specifies what character encoding to use where applicable (type String)</summary>\r
+               //UPGRADE_NOTE: Final was removed from the declaration of 'CHARACTER_SET '. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1003'"\r
+               public static readonly EncodeHintType CHARACTER_SET = new EncodeHintType();\r
+               \r
+               private EncodeHintType()\r
+               {\r
+               }\r
+       }\r
 }
\ No newline at end of file