Class MultiTouchGestureAdapter
- java.lang.Object
-
- com.avaya.clientservices.media.gui.MultiTouchGestureAdapter
-
- All Implemented Interfaces:
MultiTouchGestureListener
public class MultiTouchGestureAdapter extends java.lang.Object implements MultiTouchGestureListener
-
-
Constructor Summary
Constructors Constructor Description MultiTouchGestureAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidonTouchCancel(double time)booleanonTouchDown(double time, float x, float y)voidonTouchMove(double time, float x, float y)voidonTouchScaleBegan(double time)voidonTouchScaleChanged(double time, float scale)voidonTouchScaleEnded(double time)voidonTouchTransfer(double time, float dx, float dy)voidonTouchUp(double time, float x, float y)
-
-
-
Method Detail
-
onTouchDown
public boolean onTouchDown(double time, float x, float y)- Specified by:
onTouchDownin interfaceMultiTouchGestureListener
-
onTouchMove
public void onTouchMove(double time, float x, float y)- Specified by:
onTouchMovein interfaceMultiTouchGestureListener
-
onTouchUp
public void onTouchUp(double time, float x, float y)- Specified by:
onTouchUpin interfaceMultiTouchGestureListener
-
onTouchCancel
public void onTouchCancel(double time)
- Specified by:
onTouchCancelin interfaceMultiTouchGestureListener
-
onTouchTransfer
public void onTouchTransfer(double time, float dx, float dy)- Specified by:
onTouchTransferin interfaceMultiTouchGestureListener
-
onTouchScaleBegan
public void onTouchScaleBegan(double time)
- Specified by:
onTouchScaleBeganin interfaceMultiTouchGestureListener
-
onTouchScaleChanged
public void onTouchScaleChanged(double time, float scale)- Specified by:
onTouchScaleChangedin interfaceMultiTouchGestureListener
-
onTouchScaleEnded
public void onTouchScaleEnded(double time)
- Specified by:
onTouchScaleEndedin interfaceMultiTouchGestureListener
-
-