mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
18 lines
1.1 KiB
Java
18 lines
1.1 KiB
Java
package androidx.compose.ui.platform;
|
|
|
|
import androidx.compose.ui.text.AnnotatedString;
|
|
import kotlin.Metadata;
|
|
|
|
/* compiled from: ClipboardManager.kt */
|
|
@Metadata(d1 = {"\u0000\u001e\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\bf\u0018\u00002\u00020\u0001J\n\u0010\u0002\u001a\u0004\u0018\u00010\u0003H&J\b\u0010\u0004\u001a\u00020\u0005H\u0016J\u0010\u0010\u0006\u001a\u00020\u00072\u0006\u0010\b\u001a\u00020\u0003H&ø\u0001\u0000\u0082\u0002\u0006\n\u0004\b!0\u0001¨\u0006\tÀ\u0006\u0001"}, d2 = {"Landroidx/compose/ui/platform/ClipboardManager;", "", "getText", "Landroidx/compose/ui/text/AnnotatedString;", "hasText", "", "setText", "", "annotatedString", "ui_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
|
|
/* loaded from: classes.dex */
|
|
public interface ClipboardManager {
|
|
AnnotatedString getText();
|
|
|
|
void setText(AnnotatedString annotatedString);
|
|
|
|
default boolean hasText() {
|
|
AnnotatedString text = getText();
|
|
return text != null && text.length() > 0;
|
|
}
|
|
}
|