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/Kind.java')
-rw-r--r--plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/Kind.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/Kind.java b/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/Kind.java
deleted file mode 100644
index 92a06717875..00000000000
--- a/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/Kind.java
+++ /dev/null
@@ -1,37 +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;
-
-/**
- * Base class for the various *Kind enumerations specified in the DDS specification. This provides the basic structure
- * and accessor methods that are common for these enumerations.
- *
- * @author Robert A. Fisher
- * @author David Diepenbrock
- */
-public abstract class Kind {
- private final String kindName;
- private final long kindId;
-
- protected Kind(String kindName, long kindId) {
- super();
- this.kindName = kindName;
- this.kindId = kindId;
- }
-
- public String getKindName() {
- return kindName;
- }
-
- public long getKindId() {
- return kindId;
- }
-}

Back to the top