aboutsummaryrefslogtreecommitdiffstats
path: root/Java/com/phidgets/event/TagLossListener.java
blob: 66a3a8ad82f7a66f70f328ec6d250cb9cdcdb489 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright 2006 Phidgets Inc.  All rights reserved.
 */

package com.phidgets.event;

/**
 * This interface represents a TagLossEvent. This event originates from the Phidget RFID reader. Tag loss events
 * occur when a tag is removed from the RFID reader.
 * 
 * @author Phidgets Inc.
 */
public interface TagLossListener
{
	/**
	 * This method is called with the event data when a new event arrives.
	 * 
	 * @param ae the event data object containing event data
	 */
	public void tagLost(TagLossEvent ae);
}