mirror of
https://github.com/samsonjs/media.git
synced 2026-03-31 10:25:48 +00:00
Add Lint.IfChange/ThenChange for repeat modes
PiperOrigin-RevId: 222630411
This commit is contained in:
parent
2d808010ee
commit
07053aaa51
1 changed files with 2 additions and 0 deletions
|
|
@ -26,6 +26,7 @@ import java.lang.annotation.RetentionPolicy;
|
|||
*/
|
||||
public final class RepeatModeUtil {
|
||||
|
||||
// LINT.IfChange
|
||||
/**
|
||||
* Set of repeat toggle modes. Can be combined using bit-wise operations. Possible flag values are
|
||||
* {@link #REPEAT_TOGGLE_MODE_NONE}, {@link #REPEAT_TOGGLE_MODE_ONE} and {@link
|
||||
|
|
@ -47,6 +48,7 @@ public final class RepeatModeUtil {
|
|||
public static final int REPEAT_TOGGLE_MODE_ONE = 1;
|
||||
/** "Repeat All" button enabled. */
|
||||
public static final int REPEAT_TOGGLE_MODE_ALL = 1 << 1; // 2
|
||||
// LINT.ThenChange(../../../../../../../../../ui/src/main/res/values/attrs.xml)
|
||||
|
||||
private RepeatModeUtil() {
|
||||
// Prevent instantiation.
|
||||
|
|
|
|||
Loading…
Reference in a new issue