Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/util/TestNotificationManager.java')
-rw-r--r--plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/util/TestNotificationManager.java70
1 files changed, 35 insertions, 35 deletions
diff --git a/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/util/TestNotificationManager.java b/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/util/TestNotificationManager.java
index 253dddc8b14..3fb6b96bcdc 100644
--- a/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/util/TestNotificationManager.java
+++ b/plugins/org.eclipse.osee.ats.test/src/org/eclipse/osee/ats/test/util/TestNotificationManager.java
@@ -8,38 +8,38 @@
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
-package org.eclipse.osee.ats.test.util;
-
-import java.util.ArrayList;
-import java.util.List;
-import org.eclipse.osee.framework.core.exception.OseeCoreException;
-import org.eclipse.osee.framework.ui.skynet.notify.INotificationManager;
-import org.eclipse.osee.framework.ui.skynet.notify.OseeNotificationEvent;
-
-/**
- * @author Donald G. Dunne
- */
-public class TestNotificationManager implements INotificationManager {
-
- private List<OseeNotificationEvent> notificationEvents = new ArrayList<OseeNotificationEvent>();
-
- @Override
- public void addNotificationEvent(OseeNotificationEvent notificationEvent) {
- notificationEvents.add(notificationEvent);
- }
-
- @Override
- public void clear() {
- notificationEvents.clear();
- }
-
- @Override
- public List<OseeNotificationEvent> getNotificationEvents() {
- return notificationEvents;
- }
-
- @Override
- public void sendNotifications() throws OseeCoreException {
- }
-
-}
+package org.eclipse.osee.ats.test.util;
+
+import java.util.ArrayList;
+import java.util.List;
+import org.eclipse.osee.framework.core.exception.OseeCoreException;
+import org.eclipse.osee.framework.ui.skynet.notify.INotificationManager;
+import org.eclipse.osee.framework.ui.skynet.notify.OseeNotificationEvent;
+
+/**
+ * @author Donald G. Dunne
+ */
+public class TestNotificationManager implements INotificationManager {
+
+ private List<OseeNotificationEvent> notificationEvents = new ArrayList<OseeNotificationEvent>();
+
+ @Override
+ public void addNotificationEvent(OseeNotificationEvent notificationEvent) {
+ notificationEvents.add(notificationEvent);
+ }
+
+ @Override
+ public void clear() {
+ notificationEvents.clear();
+ }
+
+ @Override
+ public List<OseeNotificationEvent> getNotificationEvents() {
+ return notificationEvents;
+ }
+
+ @Override
+ public void sendNotifications() throws OseeCoreException {
+ }
+
+}

Back to the top