Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/service/TopicDescription.java')
-rw-r--r--plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/service/TopicDescription.java45
1 files changed, 0 insertions, 45 deletions
diff --git a/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/service/TopicDescription.java b/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/service/TopicDescription.java
deleted file mode 100644
index defaf4298f7..00000000000
--- a/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/service/TopicDescription.java
+++ /dev/null
@@ -1,45 +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.messaging.dds.service;
-
-import org.eclipse.osee.ote.messaging.dds.entity.DomainParticipant;
-
-/**
- * Provides a description of all topic classes. Any class that is a topic of some sort should implement this interface.
- *
- * @author Robert A. Fisher
- * @author David Diepenbrock
- */
-public interface TopicDescription {
-
- /**
- * The method which will supply the name used to create the topic.
- *
- * @return A string representation of the topic name.
- */
- public String getName();
-
- /**
- * The method which will return a reference to the <code>DomainParticipant</code> which created the topic.
- *
- * @return The <code>DomainParticipant</code> that created this topic.
- */
- public DomainParticipant getParticipant();
-
- /**
- * The method which will supply the type name used to create the topic.
- *
- * @return A string representation of the type name.
- */
- public String getTypeName();
-
- public String getNamespace();
-}

Back to the top