aboutsummaryrefslogtreecommitdiffstats
path: root/isdb-t/br-sp-Amparo (follow)
AgeCommit message (Expand)AuthorFilesLines
2014-10-15Imported Upstream version 0+git20141009.d26b627upstream/0+git20141009.d26b627Jonathan McCrohan1-0/+61
4' href='#n14'>14 15 16 17 18 19 20 21
/*
 * Copyright 2006 Phidgets Inc.  All rights reserved.
 */

package com.phidgets.event;

/**
 * This interface represents a StepperPositionChangeEvent. This event originates from the Phidget Stepper Controller and the 
 * Phidget Advanced Stepper Controller.
 * 
 * @author Phidgets Inc.
 */
public interface StepperPositionChangeListener
{
	/**
	 * This method is called with the event data when a new event arrives.
	 * 
	 * @param ae the event data object containing event data
	 */
	public void stepperPositionChanged(StepperPositionChangeEvent ae);
}