aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/service/muc/ChatRoomPresenceStatus.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/java/sip/communicator/service/muc/ChatRoomPresenceStatus.java')
-rw-r--r--src/net/java/sip/communicator/service/muc/ChatRoomPresenceStatus.java140
1 files changed, 70 insertions, 70 deletions
diff --git a/src/net/java/sip/communicator/service/muc/ChatRoomPresenceStatus.java b/src/net/java/sip/communicator/service/muc/ChatRoomPresenceStatus.java
index fa9d244..b0d81a8 100644
--- a/src/net/java/sip/communicator/service/muc/ChatRoomPresenceStatus.java
+++ b/src/net/java/sip/communicator/service/muc/ChatRoomPresenceStatus.java
@@ -1,4 +1,4 @@
-/*
+/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Copyright @ 2015 Atlassian Pty Ltd
@@ -15,72 +15,72 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package net.java.sip.communicator.service.muc;
-
-import net.java.sip.communicator.service.protocol.*;
-
-/**
- * The chat room statuses.
- *
- * @author Hristo Terezov
- */
-public class ChatRoomPresenceStatus extends PresenceStatus
-{
- /**
- * An integer above which all values of the status coefficient indicate
- * eagerness to communicate
- */
- public static final int CHAT_ROOM_ONLINE_THRESHOLD = 86;
-
- /**
- * An integer above which all values of the status coefficient indicate
- * eagerness to communicate
- */
- public static final int CHAT_ROOM_OFFLINE_THRESHOLD = 87;
-
- /**
- * Indicates that the user is connected and ready to communicate.
- */
- public static final String ONLINE_STATUS = "Online";
-
- /**
- * Indicates that the user is disconnected.
- */
- public static final String OFFLINE_STATUS = "Offline";
-
- /**
- * The Online status. Indicate that the user is able and willing to
- * communicate in the chat room.
- */
- public static final ChatRoomPresenceStatus CHAT_ROOM_ONLINE
- = new ChatRoomPresenceStatus(
- 86,
- ONLINE_STATUS);
-
- /**
- * The Offline status. Indicates the user does not seem to be connected
- * to the chat room.
- */
- public static final ChatRoomPresenceStatus CHAT_ROOM_OFFLINE
- = new ChatRoomPresenceStatus(
- 87,
- OFFLINE_STATUS);
-
- /**
- * Creates a status with the specified connectivity coeff and name for the
- * chat rooms.
- * @param status the connectivity coefficient for the specified status
- * @param statusName String
- */
- protected ChatRoomPresenceStatus(int status, String statusName)
- {
- super(status, statusName);
- }
-
- @Override
- public boolean isOnline()
- {
- return getStatus() == CHAT_ROOM_ONLINE_THRESHOLD;
- }
-
-}
+package net.java.sip.communicator.service.muc;
+
+import net.java.sip.communicator.service.protocol.*;
+
+/**
+ * The chat room statuses.
+ *
+ * @author Hristo Terezov
+ */
+public class ChatRoomPresenceStatus extends PresenceStatus
+{
+ /**
+ * An integer above which all values of the status coefficient indicate
+ * eagerness to communicate
+ */
+ public static final int CHAT_ROOM_ONLINE_THRESHOLD = 86;
+
+ /**
+ * An integer above which all values of the status coefficient indicate
+ * eagerness to communicate
+ */
+ public static final int CHAT_ROOM_OFFLINE_THRESHOLD = 87;
+
+ /**
+ * Indicates that the user is connected and ready to communicate.
+ */
+ public static final String ONLINE_STATUS = "Online";
+
+ /**
+ * Indicates that the user is disconnected.
+ */
+ public static final String OFFLINE_STATUS = "Offline";
+
+ /**
+ * The Online status. Indicate that the user is able and willing to
+ * communicate in the chat room.
+ */
+ public static final ChatRoomPresenceStatus CHAT_ROOM_ONLINE
+ = new ChatRoomPresenceStatus(
+ 86,
+ ONLINE_STATUS);
+
+ /**
+ * The Offline status. Indicates the user does not seem to be connected
+ * to the chat room.
+ */
+ public static final ChatRoomPresenceStatus CHAT_ROOM_OFFLINE
+ = new ChatRoomPresenceStatus(
+ 87,
+ OFFLINE_STATUS);
+
+ /**
+ * Creates a status with the specified connectivity coeff and name for the
+ * chat rooms.
+ * @param status the connectivity coefficient for the specified status
+ * @param statusName String
+ */
+ protected ChatRoomPresenceStatus(int status, String statusName)
+ {
+ super(status, statusName);
+ }
+
+ @Override
+ public boolean isOnline()
+ {
+ return getStatus() == CHAT_ROOM_ONLINE_THRESHOLD;
+ }
+
+}