Added support for codabar format
[zxing.git] / core / src / com / google / zxing / BarcodeFormat.java
index aa4096a..032a1b6 100644 (file)
@@ -54,7 +54,10 @@ public final class BarcodeFormat {
   public static final BarcodeFormat CODE_39 = new BarcodeFormat("CODE_39");
 
   /** Code 93 1D format. */
-  public static final BarcodeFormat CODE_93 = new BarcodeFormat("CODE_93");
+  public static final BarcodeFormat CODE_93 = new BarcodeFormat("CODE_93");\r
+  \r
+  /** CODABAR 1D format. */\r
+  public static final BarcodeFormat CODABAR = new BarcodeFormat("CODABAR");
 
   /** ITF (Interleaved Two of Five) 1D format. */
   public static final BarcodeFormat ITF = new BarcodeFormat("ITF");