mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 09:32:27 -06:00
41 lines
1.2 KiB
Java
41 lines
1.2 KiB
Java
package androidx.media3.common.text;
|
|
|
|
import java.lang.annotation.Documented;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class TextEmphasisSpan implements LanguageFeatureSpan {
|
|
public static final int MARK_FILL_FILLED = 1;
|
|
public static final int MARK_FILL_OPEN = 2;
|
|
public static final int MARK_FILL_UNKNOWN = 0;
|
|
public static final int MARK_SHAPE_CIRCLE = 1;
|
|
public static final int MARK_SHAPE_DOT = 2;
|
|
public static final int MARK_SHAPE_NONE = 0;
|
|
public static final int MARK_SHAPE_SESAME = 3;
|
|
public int markFill;
|
|
public int markShape;
|
|
public final int position;
|
|
|
|
@Target({ElementType.TYPE_USE})
|
|
@Documented
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
/* loaded from: classes2.dex */
|
|
public @interface MarkFill {
|
|
}
|
|
|
|
@Target({ElementType.TYPE_USE})
|
|
@Documented
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
/* loaded from: classes2.dex */
|
|
public @interface MarkShape {
|
|
}
|
|
|
|
public TextEmphasisSpan(int i, int i2, int i3) {
|
|
this.markShape = i;
|
|
this.markFill = i2;
|
|
this.position = i3;
|
|
}
|
|
}
|