mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-16 12:12:06 +01:00
Adding back isJoined method, which got deleted somehow...
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2107 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
48611ac2f5
commit
1ba31fd633
1 changed files with 10 additions and 0 deletions
|
@ -198,6 +198,16 @@ public class GroupChat {
|
||||||
joined = true;
|
joined = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns true if currently in the group chat (after calling the {@link
|
||||||
|
* #join(String)} method.
|
||||||
|
*
|
||||||
|
* @return true if currently in the group chat room.
|
||||||
|
*/
|
||||||
|
public boolean isJoined() {
|
||||||
|
return joined;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Leave the chat room.
|
* Leave the chat room.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue