com.guigarage.gestures.GesturePhaseEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gestures-wrapper Show documentation
Show all versions of gestures-wrapper Show documentation
Wrapper for multitoch gestures
The newest version!
package com.guigarage.gestures;
import javax.swing.JComponent;
/**
* A event that indicates that a multitouch gesture occured on a component.
* @author hendrikebbers
*
*/
public class GesturePhaseEvent extends GestureEvent {
private static final long serialVersionUID = 1L;
/**
* Constructs a GestureSwipeEvent
object with the
* specified source component
* @param source the component on with the event occured
*/
public GesturePhaseEvent(JComponent source) {
super(source);
}
}