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

package com.phidgets.event;

/**
 * This interface represents an EncoderPositionChangeEvent. This event originates from the Phidget Encoder and the Phidget Motor Controller. This event is not supported by all Motor Controllers.
 * 
 * @author Phidgets Inc.
 */
public interface EncoderPositionChangeListener
{
	/**
	 * This method is called with the event data when a new event arrives.
	 * 
	 * @param ae the event data object containing event data
	 */
	public void encoderPositionChanged(EncoderPositionChangeEvent ae);
}