aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/service/notification/NotificationAction.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/java/sip/communicator/service/notification/NotificationAction.java')
-rw-r--r--src/net/java/sip/communicator/service/notification/NotificationAction.java192
1 files changed, 96 insertions, 96 deletions
diff --git a/src/net/java/sip/communicator/service/notification/NotificationAction.java b/src/net/java/sip/communicator/service/notification/NotificationAction.java
index bb8b156..73b285f 100644
--- a/src/net/java/sip/communicator/service/notification/NotificationAction.java
+++ b/src/net/java/sip/communicator/service/notification/NotificationAction.java
@@ -1,4 +1,4 @@
-/*
+/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Copyright @ 2015 Atlassian Pty Ltd
@@ -15,98 +15,98 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package net.java.sip.communicator.service.notification;
-
-/**
- * Base class for actions of a notification.
- *
- * @author Ingo Bauersachs
- */
-public abstract class NotificationAction
-{
- /**
- * The sound action type indicates that a sound would be played, when a
- * notification is fired.
- */
- public static final String ACTION_SOUND = "SoundAction";
-
- /**
- * The popup message action type indicates that a window (or a systray
- * popup), containing the corresponding notification message would be poped
- * up, when a notification is fired.
- */
- public static final String ACTION_POPUP_MESSAGE = "PopupMessageAction";
-
- /**
- * The log message action type indicates that a message would be logged,
- * when a notification is fired.
- */
- public static final String ACTION_LOG_MESSAGE = "LogMessageAction";
-
- /**
- * The command action type indicates that a command would be executed,
- * when a notification is fired.
- */
- public static final String ACTION_COMMAND = "CommandAction";
-
- /**
- * The vibrate action type indicates that the device will vibrate,
- * when a notification is fired.
- */
- public static final String ACTION_VIBRATE = "VibrateAction";
-
- /**
- * Indicates if this handler is enabled.
- */
- private boolean isEnabled = true;
-
- /**
- * The action type name.
- */
- private String actionType;
-
- /**
- * Creates a new instance of this class.
- * @param actionType The action type name.
- */
- protected NotificationAction(String actionType)
- {
- this.actionType = actionType;
- }
-
- /**
- * Return the action type name.
- * @return the action type name.
- */
- public String getActionType()
- {
- return actionType;
- }
-
- /**
- * Returns TRUE if this notification action handler is enabled and FALSE
- * otherwise. While the notification handler for the sound action type is
- * disabled no sounds will be played when the <tt>fireNotification</tt>
- * method is called.
- *
- * @return TRUE if this notification action handler is enabled and FALSE
- * otherwise
- */
- public boolean isEnabled()
- {
- return isEnabled;
- }
-
- /**
- * Enables or disables this notification handler. While the notification
- * handler for the sound action type is disabled no sounds will be played
- * when the <tt>fireNotification</tt> method is called.
- *
- * @param isEnabled TRUE to enable this notification handler, FALSE to
- * disable it.
- */
- public void setEnabled(boolean isEnabled)
- {
- this.isEnabled = isEnabled;
- }
-}
+package net.java.sip.communicator.service.notification;
+
+/**
+ * Base class for actions of a notification.
+ *
+ * @author Ingo Bauersachs
+ */
+public abstract class NotificationAction
+{
+ /**
+ * The sound action type indicates that a sound would be played, when a
+ * notification is fired.
+ */
+ public static final String ACTION_SOUND = "SoundAction";
+
+ /**
+ * The popup message action type indicates that a window (or a systray
+ * popup), containing the corresponding notification message would be poped
+ * up, when a notification is fired.
+ */
+ public static final String ACTION_POPUP_MESSAGE = "PopupMessageAction";
+
+ /**
+ * The log message action type indicates that a message would be logged,
+ * when a notification is fired.
+ */
+ public static final String ACTION_LOG_MESSAGE = "LogMessageAction";
+
+ /**
+ * The command action type indicates that a command would be executed,
+ * when a notification is fired.
+ */
+ public static final String ACTION_COMMAND = "CommandAction";
+
+ /**
+ * The vibrate action type indicates that the device will vibrate,
+ * when a notification is fired.
+ */
+ public static final String ACTION_VIBRATE = "VibrateAction";
+
+ /**
+ * Indicates if this handler is enabled.
+ */
+ private boolean isEnabled = true;
+
+ /**
+ * The action type name.
+ */
+ private String actionType;
+
+ /**
+ * Creates a new instance of this class.
+ * @param actionType The action type name.
+ */
+ protected NotificationAction(String actionType)
+ {
+ this.actionType = actionType;
+ }
+
+ /**
+ * Return the action type name.
+ * @return the action type name.
+ */
+ public String getActionType()
+ {
+ return actionType;
+ }
+
+ /**
+ * Returns TRUE if this notification action handler is enabled and FALSE
+ * otherwise. While the notification handler for the sound action type is
+ * disabled no sounds will be played when the <tt>fireNotification</tt>
+ * method is called.
+ *
+ * @return TRUE if this notification action handler is enabled and FALSE
+ * otherwise
+ */
+ public boolean isEnabled()
+ {
+ return isEnabled;
+ }
+
+ /**
+ * Enables or disables this notification handler. While the notification
+ * handler for the sound action type is disabled no sounds will be played
+ * when the <tt>fireNotification</tt> method is called.
+ *
+ * @param isEnabled TRUE to enable this notification handler, FALSE to
+ * disable it.
+ */
+ public void setEnabled(boolean isEnabled)
+ {
+ this.isEnabled = isEnabled;
+ }
+}