This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/Contact.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
package com.tencent.qqnt.kernel.nativeinterface; | ||
|
||
import java.io.Serializable; | ||
|
||
public final class Contact implements IKernelModel, Serializable { | ||
int chatType; | ||
String guildId; | ||
String peerUid; | ||
long serialVersionUID; | ||
|
||
public Contact() { | ||
this.serialVersionUID = 1L; | ||
this.peerUid = ""; | ||
this.guildId = ""; | ||
} | ||
|
||
public int getChatType() { | ||
return this.chatType; | ||
} | ||
|
||
public String getGuildId() { | ||
return this.guildId; | ||
} | ||
|
||
public String getPeerUid() { | ||
return this.peerUid; | ||
} | ||
|
||
public void setChatType(int i2) { | ||
this.chatType = i2; | ||
} | ||
|
||
public void setGuildId(String str) { | ||
this.guildId = str; | ||
} | ||
|
||
public void setPeerUid(String str) { | ||
this.peerUid = str; | ||
} | ||
|
||
public String toString() { | ||
return "Contact{chatType=" + this.chatType + ",peerUid=" + this.peerUid + ",guildId=" + this.guildId + ",}"; | ||
} | ||
|
||
public Contact(int i2, String str, String str2) { | ||
this.serialVersionUID = 1L; | ||
this.chatType = i2; | ||
this.peerUid = str; | ||
this.guildId = str2; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters