mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 01:22:33 -06:00
33 lines
619 B
Java
33 lines
619 B
Java
|
package io.sentry;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class SpanOptions {
|
||
|
private boolean trimStart = false;
|
||
|
private boolean trimEnd = false;
|
||
|
private boolean isIdle = false;
|
||
|
|
||
|
public boolean isIdle() {
|
||
|
return this.isIdle;
|
||
|
}
|
||
|
|
||
|
public boolean isTrimEnd() {
|
||
|
return this.trimEnd;
|
||
|
}
|
||
|
|
||
|
public boolean isTrimStart() {
|
||
|
return this.trimStart;
|
||
|
}
|
||
|
|
||
|
public void setIdle(boolean z) {
|
||
|
this.isIdle = z;
|
||
|
}
|
||
|
|
||
|
public void setTrimEnd(boolean z) {
|
||
|
this.trimEnd = z;
|
||
|
}
|
||
|
|
||
|
public void setTrimStart(boolean z) {
|
||
|
this.trimStart = z;
|
||
|
}
|
||
|
}
|