OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:chatManager
(Results
1 - 5
of
5
) sorted by null
/external/smack/src/org/jivesoftware/smack/
Chat.java
42
private
ChatManager
chatManager
;
50
* @param
chatManager
the
chatManager
the chat will use.
54
Chat(
ChatManager
chatManager
, String participant, String threadID) {
55
this.
chatManager
=
chatManager
;
97
chatManager
.sendMessage(this, message);
113
chatManager
.sendMessage(this, message)
[
all
...]
Connection.java.orig
171
* The
ChatManager
keeps track of references to all current chats.
173
protected
ChatManager
chatManager
= null;
434
* Returns a chat manager instance for this connection. The
ChatManager
manages all incoming and
439
public synchronized
ChatManager
getChatManager() {
440
if (this.
chatManager
== null) {
441
this.
chatManager
= new
ChatManager
(this);
443
return this.
chatManager
;
[
all
...]
Connection.java
171
* The
ChatManager
keeps track of references to all current chats.
173
protected
ChatManager
chatManager
= null;
434
* Returns a chat manager instance for this connection. The
ChatManager
manages all incoming and
439
public synchronized
ChatManager
getChatManager() {
440
if (this.
chatManager
== null) {
441
this.
chatManager
= new
ChatManager
(this);
443
return this.
chatManager
;
[
all
...]
XMPPConnection.java
492
chatManager
= null;
711
chatManager
= null;
[
all
...]
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
WiFiChatFragment.java
25
private
ChatManager
chatManager
;
45
if (
chatManager
!= null) {
46
chatManager
.write(chatLine.getText().toString()
61
public void setChatManager(
ChatManager
obj) {
62
chatManager
= obj;
Completed in 729 milliseconds