Package com.hp.lft.sdk.mobile
Class PanArgs
java.lang.Object
com.hp.lft.sdk.mobile.PanArgs
Arguments that define additional behavior for Pan operations.
This class can be initialized using the builder pattern.
This class can be initialized using the builder pattern.
- 
Constructor SummaryConstructorsConstructorDescriptionPanArgs()Initializes a new instance of the PanArgs class with default arguments.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the gesture class designed by the mobile application developer to handle this gesture on this object.
 Needed only if the application developer overrode the default gesture class.Returns the velocity of the pan operation.setGesture(String gesture) Sets the gesture class designed by the mobile application developer to handle this gesture on this object.
 Needed only if the application developer overrode the default gesture class.setVelocity(Double velocity) Sets the velocity of the pan operation.
- 
Constructor Details- 
PanArgspublic PanArgs()Initializes a new instance of the PanArgs class with default arguments.
 
- 
- 
Method Details- 
getGestureReturns the gesture class designed by the mobile application developer to handle this gesture on this object.
 Needed only if the application developer overrode the default gesture class.- Returns:
- the gesture class designed by the mobile application developer.
 
- 
setGestureSets the gesture class designed by the mobile application developer to handle this gesture on this object.
 Needed only if the application developer overrode the default gesture class.- Parameters:
- gesture- the gesture class designed by the mobile application developer.
- Returns:
- the PanArgs instance with the updated state (builder pattern).
 
- 
getVelocityReturns the velocity of the pan operation. (iOS Only)- Returns:
- the velocity of the pan operation.
 
- 
setVelocitySets the velocity of the pan operation. (iOS Only)
 The velocity must be positive.- Parameters:
- velocity- the velocity of the pan operation.
- Returns:
- the PanArgs instance with the updated state (builder pattern).
 
 
-