X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=core%2Fsrc%2Fcom%2Fgoogle%2Fzxing%2Foned%2FUPCEANReader.java;fp=core%2Fsrc%2Fcom%2Fgoogle%2Fzxing%2Foned%2FUPCEANReader.java;h=db1dcb1c98c65ea743f7b620151bbc426c0cd6d4;hb=1fef67f2830ef51e4098a27c425e300eccaef86b;hp=054bdf9df55605db232833dc8466f7ebe76b9973;hpb=794edf04311654519083ee6f8f868d6c7c9fecf0;p=zxing.git diff --git a/core/src/com/google/zxing/oned/UPCEANReader.java b/core/src/com/google/zxing/oned/UPCEANReader.java index 054bdf9d..db1dcb1c 100644 --- a/core/src/com/google/zxing/oned/UPCEANReader.java +++ b/core/src/com/google/zxing/oned/UPCEANReader.java @@ -20,6 +20,8 @@ import com.google.zxing.ReaderException; import com.google.zxing.Result; import com.google.zxing.common.BitArray; +import java.util.Hashtable; + /** *

This interfaces captures additional functionality that readers of * UPC/EAN family of barcodes should expose.

@@ -33,6 +35,7 @@ public interface UPCEANReader extends OneDReader { * allows caller to inform method about where the UPC/EAN start pattern is * found. This allows this to be computed once and reused across many implementations.

*/ - Result decodeRow(int rowNumber, BitArray row, int[] startGuardRange) throws ReaderException; + Result decodeRow(int rowNumber, BitArray row, int[] startGuardRange, Hashtable hints) + throws ReaderException; } \ No newline at end of file