Initial commit
This commit is contained in:
26
sources/com/ubt/jimu/base/event/BaseEvent.java
Normal file
26
sources/com/ubt/jimu/base/event/BaseEvent.java
Normal file
@@ -0,0 +1,26 @@
|
||||
package com.ubt.jimu.base.event;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class BaseEvent {
|
||||
public static final int TYPE_NOTIFY_DEFAULT = 1;
|
||||
public static final int TYPE_NOTIFY_PART = 3;
|
||||
private String msg;
|
||||
private int type;
|
||||
|
||||
public BaseEvent() {
|
||||
this(1, "defalt");
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return this.msg;
|
||||
}
|
||||
|
||||
public int getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public BaseEvent(int i, String str) {
|
||||
this.type = i;
|
||||
this.msg = str;
|
||||
}
|
||||
}
|
18
sources/com/ubt/jimu/base/event/GdprEvent.java
Normal file
18
sources/com/ubt/jimu/base/event/GdprEvent.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package com.ubt.jimu.base.event;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class GdprEvent {
|
||||
private boolean isAgree;
|
||||
|
||||
public GdprEvent(boolean z) {
|
||||
this.isAgree = z;
|
||||
}
|
||||
|
||||
public boolean isAgree() {
|
||||
return this.isAgree;
|
||||
}
|
||||
|
||||
public void setAgree(boolean z) {
|
||||
this.isAgree = z;
|
||||
}
|
||||
}
|
27
sources/com/ubt/jimu/base/event/MessageEvent.java
Normal file
27
sources/com/ubt/jimu/base/event/MessageEvent.java
Normal file
@@ -0,0 +1,27 @@
|
||||
package com.ubt.jimu.base.event;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class MessageEvent {
|
||||
public static final int TYPE_BLUETOOTH_CONNECT = 2;
|
||||
public static final int TYPE_BLUETOOTH_DISCONNECT = 3;
|
||||
public static final int TYPE_LOGIN = 0;
|
||||
public static final int TYPE_LOGIN_AS_VISTOR = 4;
|
||||
public static final int TYPE_LOGIN_LOW13 = 7;
|
||||
public static final int TYPE_LOGOUT = 1;
|
||||
public static final int TYPE_USERIFO_CHANGE = 6;
|
||||
public static final int TYPE_WRITE_OFF = 5;
|
||||
private int type;
|
||||
|
||||
public MessageEvent(int i) {
|
||||
this.type = 0;
|
||||
this.type = i;
|
||||
}
|
||||
|
||||
public int getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
public void setType(int i) {
|
||||
this.type = i;
|
||||
}
|
||||
}
|
43
sources/com/ubt/jimu/base/event/SelectPackEvent.java
Normal file
43
sources/com/ubt/jimu/base/event/SelectPackEvent.java
Normal file
@@ -0,0 +1,43 @@
|
||||
package com.ubt.jimu.base.event;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class SelectPackEvent {
|
||||
private long packId;
|
||||
private String packetImgPath;
|
||||
private String robotName;
|
||||
|
||||
public SelectPackEvent(String str, long j) {
|
||||
this.robotName = str;
|
||||
this.packId = j;
|
||||
}
|
||||
|
||||
public long getPackId() {
|
||||
return this.packId;
|
||||
}
|
||||
|
||||
public String getPacketImgPath() {
|
||||
return this.packetImgPath;
|
||||
}
|
||||
|
||||
public String getRobotName() {
|
||||
return this.robotName;
|
||||
}
|
||||
|
||||
public void setPackId(long j) {
|
||||
this.packId = j;
|
||||
}
|
||||
|
||||
public void setPacketImgPath(String str) {
|
||||
this.packetImgPath = str;
|
||||
}
|
||||
|
||||
public void setRobotName(String str) {
|
||||
this.robotName = str;
|
||||
}
|
||||
|
||||
public SelectPackEvent(String str, long j, String str2) {
|
||||
this.robotName = str;
|
||||
this.packId = j;
|
||||
this.packetImgPath = str2;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user