mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
35 lines
885 B
Java
35 lines
885 B
Java
package com.google.zxing.client.result;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class TelParsedResult extends ParsedResult {
|
|
private final String number;
|
|
private final String telURI;
|
|
private final String title;
|
|
|
|
public String getNumber() {
|
|
return this.number;
|
|
}
|
|
|
|
public String getTelURI() {
|
|
return this.telURI;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return this.title;
|
|
}
|
|
|
|
public TelParsedResult(String str, String str2, String str3) {
|
|
super(ParsedResultType.TEL);
|
|
this.number = str;
|
|
this.telURI = str2;
|
|
this.title = str3;
|
|
}
|
|
|
|
@Override // com.google.zxing.client.result.ParsedResult
|
|
public String getDisplayResult() {
|
|
StringBuilder sb = new StringBuilder(20);
|
|
maybeAppend(this.number, sb);
|
|
maybeAppend(this.title, sb);
|
|
return sb.toString();
|
|
}
|
|
}
|