/* * Created on Mar 2, 2005 */ /** * This is the interface for recieving RFID-events from the class RFID. */ public interface RFIDEventListener { public void tagEntered(String tagNumber); public void tagRemoved(String tagNumber); }