mirror of
https://github.com/zxing/zxing.git
synced 2025-01-12 11:47:26 -08:00
Issue 1136 more cleanup of Actionscript compile issues
git-svn-id: https://zxing.googlecode.com/svn/trunk@2227 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
60df2dba0c
commit
7399f24735
|
@ -17,7 +17,7 @@
|
|||
package com.google.zxing.aztec
|
||||
{
|
||||
import com.google.zxing.Reader;
|
||||
import com.google.zxing.common.ResultPointCallback;
|
||||
import com.google.zxing.ResultPointCallback;
|
||||
|
||||
public final class AztecReader implements Reader
|
||||
{
|
||||
|
|
|
@ -1,31 +0,0 @@
|
|||
/*
|
||||
* Copyright 2009 ZXing authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.google.zxing
|
||||
{
|
||||
|
||||
/**
|
||||
* Callback which is invoked when a possible result point (significant
|
||||
* point in the barcode image such as a corner) is found.
|
||||
*
|
||||
* @see DecodeHintType#NEED_RESULT_POINT_CALLBACK
|
||||
*/
|
||||
public interface ResultPointCallback {
|
||||
|
||||
function foundPossibleResultPoint(point:ResultPoint ):void;
|
||||
|
||||
}
|
||||
}
|
|
@ -23,7 +23,7 @@ package com.google.zxing.oned.rss
|
|||
import com.google.zxing.Result;
|
||||
import com.google.zxing.ResultPoint;
|
||||
import com.google.zxing.common.BitArray;
|
||||
import com.google.zxing.common.ResultPointCallback;
|
||||
import com.google.zxing.ResultPointCallback;
|
||||
import com.google.zxing.common.flexdatatypes.ArrayList;
|
||||
import com.google.zxing.common.flexdatatypes.Enumeration;
|
||||
import com.google.zxing.common.flexdatatypes.HashTable;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.google.zxing.qrcode.detector
|
||||
{
|
||||
import com.google.zxing.common.ResultPointCallback;
|
||||
import com.google.zxing.ResultPointCallback;
|
||||
|
||||
public class AlignmentPatternFinder
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.google.zxing.qrcode.detector
|
||||
{
|
||||
import com.google.zxing.common.ResultPointCallback;
|
||||
import com.google.zxing.ResultPointCallback;
|
||||
import com.google.zxing.common.BitMatrix;
|
||||
import com.google.zxing.common.flexdatatypes.HashTable;
|
||||
import com.google.zxing.common.DetectorResult;
|
||||
|
|
|
@ -6,7 +6,7 @@ package com.google.zxing.qrcode.detector
|
|||
import com.google.zxing.ResultPoint;
|
||||
import com.google.zxing.common.BitArray;
|
||||
import com.google.zxing.common.BitMatrix;
|
||||
import com.google.zxing.common.ResultPointCallback;
|
||||
import com.google.zxing.ResultPointCallback;
|
||||
import com.google.zxing.common.flexdatatypes.ArrayList;
|
||||
import com.google.zxing.common.flexdatatypes.HashTable;
|
||||
|
||||
|
|
Loading…
Reference in a new issue