Initial commit
This commit is contained in:
57
sources/com/ubtrobot/ubtlib/share/ShareBuilder.java
Normal file
57
sources/com/ubtrobot/ubtlib/share/ShareBuilder.java
Normal file
@@ -0,0 +1,57 @@
|
||||
package com.ubtrobot.ubtlib.share;
|
||||
|
||||
import android.net.Uri;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public class ShareBuilder {
|
||||
private String a;
|
||||
private String b;
|
||||
private String c;
|
||||
private int d;
|
||||
private Uri e;
|
||||
|
||||
public ShareBuilder a(String str) {
|
||||
this.c = str;
|
||||
return this;
|
||||
}
|
||||
|
||||
public ShareBuilder b(String str) {
|
||||
this.a = str;
|
||||
return this;
|
||||
}
|
||||
|
||||
public ShareBuilder c(String str) {
|
||||
this.b = str;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String d() {
|
||||
return this.a;
|
||||
}
|
||||
|
||||
public String e() {
|
||||
return this.b;
|
||||
}
|
||||
|
||||
public ShareBuilder a(int i) {
|
||||
this.d = i;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String b() {
|
||||
return this.c;
|
||||
}
|
||||
|
||||
public int c() {
|
||||
return this.d;
|
||||
}
|
||||
|
||||
public ShareBuilder a(Uri uri) {
|
||||
this.e = uri;
|
||||
return this;
|
||||
}
|
||||
|
||||
public Uri a() {
|
||||
return this.e;
|
||||
}
|
||||
}
|
@@ -0,0 +1,10 @@
|
||||
package com.ubtrobot.ubtlib.share;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public interface UbtSocialShareListener {
|
||||
void a();
|
||||
|
||||
void onCancel();
|
||||
|
||||
void onSuccess();
|
||||
}
|
Reference in New Issue
Block a user