Skip to content

Commit

Permalink
Dev
Browse files Browse the repository at this point in the history
  • Loading branch information
yuriy-budiyev committed Dec 17, 2017
1 parent dc795ed commit 5cf388b
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public void setMaximum(float maximum) {
}

/**
* Start angle for non-indeterminate mode (in degrees),between -360 and 360 degrees
* Start angle for non-indeterminate mode (in degrees), between -360 and 360 degrees
*/
public void setStartAngle(@FloatRange(from = -360f, to = 360f) float angle) {
checkStartAngle(angle);
Expand All @@ -180,7 +180,7 @@ public void setAnimateProgress(boolean animate) {
}

/**
* Progress animation duration for non- indeterminate mode
* Progress animation duration for non-indeterminate mode (in milliseconds)
*/
public void setProgressAnimationDuration(@IntRange(from = 0) long duration) {
checkAnimationDuration(duration);
Expand All @@ -193,7 +193,7 @@ public void setProgressAnimationDuration(@IntRange(from = 0) long duration) {
}

/**
* Minimum angle for indeterminate mode, between 0 and 120 degrees
* Minimum angle for indeterminate mode, between 0 and 180 degrees
*/
public void setIndeterminateMinimumAngle(@FloatRange(from = 0f, to = 180f) float angle) {
checkIndeterminateMinimumAngle(angle);
Expand All @@ -207,7 +207,7 @@ public void setIndeterminateMinimumAngle(@FloatRange(from = 0f, to = 180f) float
}

/**
* Rotation animation duration for indeterminate mode
* Rotation animation duration for indeterminate mode (in milliseconds)
*/
public void setIndeterminateRotationAnimationDuration(@IntRange(from = 0) long duration) {
checkAnimationDuration(duration);
Expand All @@ -220,7 +220,7 @@ public void setIndeterminateRotationAnimationDuration(@IntRange(from = 0) long d
}

/**
* Sweep animation duration for indeterminate mode
* Sweep animation duration for indeterminate mode (in milliseconds)
*/
public void setIndeterminateSweepAnimationDuration(@IntRange(from = 0) long duration) {
checkAnimationDuration(duration);
Expand Down

0 comments on commit 5cf388b

Please sign in to comment.