Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.sirius.diagram.sequence/src/org/eclipse/sirius/diagram/sequence/util/NotificationQuery.java')
-rw-r--r--plugins/org.eclipse.sirius.diagram.sequence/src/org/eclipse/sirius/diagram/sequence/util/NotificationQuery.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/plugins/org.eclipse.sirius.diagram.sequence/src/org/eclipse/sirius/diagram/sequence/util/NotificationQuery.java b/plugins/org.eclipse.sirius.diagram.sequence/src/org/eclipse/sirius/diagram/sequence/util/NotificationQuery.java
new file mode 100644
index 0000000000..dba3076ada
--- /dev/null
+++ b/plugins/org.eclipse.sirius.diagram.sequence/src/org/eclipse/sirius/diagram/sequence/util/NotificationQuery.java
@@ -0,0 +1,30 @@
+/*******************************************************************************
+ * Copyright (c) 2010 THALES GLOBAL SERVICES.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Obeo - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.sirius.diagram.sequence.util;
+
+import org.eclipse.emf.common.notify.Notification;
+
+/**
+ * Queries on EMF Notifications to identify what they are about.
+ *
+ * @author pcdavid
+ */
+public class NotificationQuery extends org.eclipse.sirius.diagram.tools.internal.util.NotificationQuery {
+ /**
+ * Constructor.
+ *
+ * @param notif
+ * the notification to query.
+ */
+ public NotificationQuery(Notification notif) {
+ super(notif);
+ }
+}

Back to the top