Draft of 'thinking' visualization for barcode scanning. Works for 1D and QR codes.
[zxing.git] / core / src / com / google / zxing / oned / UPCEANReader.java
1 /*
2  * Copyright 2008 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.oned;
18
19 import com.google.zxing.ReaderException;
20 import com.google.zxing.Result;
21 import com.google.zxing.common.BitArray;
22
23 import java.util.Hashtable;
24
25 /**
26  * <p>This interfaces captures additional functionality that readers of
27  * UPC/EAN family of barcodes should expose.</p>
28  *
29  * @author Sean Owen
30  */
31 public interface UPCEANReader extends OneDReader {
32
33   /**
34    * <p>Like {@link #decodeRow(int, BitArray, java.util.Hashtable)}, but
35    * allows caller to inform method about where the UPC/EAN start pattern is
36    * found. This allows this to be computed once and reused across many implementations.</p>
37    */
38   Result decodeRow(int rowNumber, BitArray row, int[] startGuardRange, Hashtable hints)
39       throws ReaderException;
40
41 }