Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/MessageSink.java')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/MessageSink.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/MessageSink.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/MessageSink.java
deleted file mode 100644
index 4556d642aac..00000000000
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/MessageSink.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * 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:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.ote.message;
-
-/**
- * @author Ryan D. Brooks
- */
-public interface MessageSink {
-
- /**
- * called once by each provider before it calls absorbMessage or absorbElement
- * @param providerName The name of the provider
- */
- public void absorbProvider(String providerName);
-
- /**
- * called once for each message in the message list
- * @param messageName The name of the message
- */
- public void absorbMessage(String messageName);
-
- /**
- * called once for each element in a message after absorbMessage is called for that message
- * @param elementName The name of the element
- */
- public void absorbElement(String elementName);
-} \ No newline at end of file

Back to the top