View Javadoc

1   package net.sf.josceleton.motion.api.gesture;
2   
3   import net.sf.josceleton.connection.api.service.motion.MotionListener;
4   import net.sf.josceleton.core.api.async.Async;
5   
6   /**
7    * @since 0.4
8    */
9   public interface Gesture<
10  		C extends GestureConfig,
11  		L extends GestureListener>
12  	extends MotionListener, // yes, we want to make Gesture a MotionListener in the public API
13  		Async<L> {
14  	
15  	// async communication only
16  	
17  }