aboutsummaryrefslogtreecommitdiffstats
path: root/Java/com/phidgets/event/InputChangeListener.java
blob: c63ade9fb706f2373511dae9149e7993fce54230 (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 InputChangeEvent. This event originates from the Phidget Encoder, the Phidget InterfaceKit,
 * and the Phidget Motor Controller.
 * 
 * @author Phidgets Inc.
 */
public interface InputChangeListener
{
	/**
	 * This method is called with the event data when a new event arrives.
	 * 
	 * @param ae the event data object containing event data
	 */
	public void inputChanged(InputChangeEvent ae);
}