www.pudn.com > 使用 Java 读取条形码代码文件.rar > BarCodeListener.java
package com.jmart.event;
/**
* The listener interface for receiving BarCodeEvents. A class that is interested in receiving BarCodeEvents implements
* this interface, and the object created with that class is registered with a component, using the component's
* addBarCodeListener method. When the BarCodeEvent occurs, that object's barCodeScanned method is invoked.
*
*/
public interface BarCodeListener {
void barCodeScanned(BarCodeEvent e);
}