javadocz
This commit is contained in:
parent
82bbb4299d
commit
49c6542fb4
|
@ -61,8 +61,13 @@ public class KineticScrolling {
|
||||||
/** The speed multiplier (divides {@link #TIME_CONST}). */
|
/** The speed multiplier (divides {@link #TIME_CONST}). */
|
||||||
private float speedMultiplier = 1f;
|
private float speedMultiplier = 1f;
|
||||||
|
|
||||||
|
/** Whether or not to allow overscrolling. */
|
||||||
private boolean allowOverScroll;
|
private boolean allowOverScroll;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enable or disable the overscrolling flag.
|
||||||
|
* @param allowOverScroll whether or not to allow overscrolling
|
||||||
|
*/
|
||||||
public void setAllowOverScroll(boolean allowOverScroll) {
|
public void setAllowOverScroll(boolean allowOverScroll) {
|
||||||
this.allowOverScroll = allowOverScroll;
|
this.allowOverScroll = allowOverScroll;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user