All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.guigarage.gestures.GestureSwipeEvent Maven / Gradle / Ivy

The newest version!
package com.guigarage.gestures;

import javax.swing.JComponent;

/**
 * A event that indicates that a swipe gesture occured on a component.
 * @author hendrikebbers
 *
 */
public class GestureSwipeEvent 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 GestureSwipeEvent(JComponent source) {
		super(source);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy