aboutsummaryrefslogtreecommitdiffstats
path: root/Java/com/phidgets/event/TagGainListener.java
blob: df7b43fe79b9d0d4cdd5ac1184d38c0e182080f5 (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 TagGainEvent. This event originates from the Phidget RFID Reader. 
 * This event occurs when a tag is placed on a reader.
 * 
 * @author Phidgets Inc.
 */
public interface TagGainListener
{
	/**
	 * This method is called with the event data when a new event arrives.
	 * 
	 * @param ae the event data object containing event data
	 */
	public void tagGained(TagGainEvent ae);
}