28 lines
735 B
Java
28 lines
735 B
Java
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;
|
|
}
|
|
}
|