aboutsummaryrefslogtreecommitdiffstats
path: root/Java/com/phidgets/event/RawDataListener.java
blob: 2a656bdba899c44c9b1590e47c4d0753bc60c19b (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 RawDataEvent. This event originates from the Phidget IR. 
 * This event occurs when the reader sees IR data.
 * 
 * @author Phidgets Inc.
 */
public interface RawDataListener
{
	/**
	 * This method is called with the event data when a new event arrives.
	 * 
	 * @param ae the event data object containing event data
	 */
	public void rawData(RawDataEvent ae);
}