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/ViewStateKind.java')
-rw-r--r--plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/ViewStateKind.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/ViewStateKind.java b/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/ViewStateKind.java
deleted file mode 100644
index df9697cd72d..00000000000
--- a/plugins/org.eclipse.osee.ote.messaging.dds/src/org/eclipse/osee/ote/messaging/dds/ViewStateKind.java
+++ /dev/null
@@ -1,36 +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;
-
-/**
- * The class which stores all of the available view states for a sample. The name of any of the values can be acquired
- * from the <code>getKindName()</code> method inherited from <code>Kind</code>.
- *
- * @see org.eclipse.osee.ote.messaging.dds.Kind
- * @author Robert A. Fisher
- * @author David Diepenbrock
- */
-public class ViewStateKind extends Kind {
-
- public final static ViewStateKind NEW = new ViewStateKind("New view state", 1);
- public final static ViewStateKind NOT_NEW = new ViewStateKind("Not new view state", 2);
-
- /**
- * Local constructor for creating <code>ViewStateKind</code> objects.
- *
- * @param kindName The name of the kind
- * @param kindId The id value of the kind
- */
- private ViewStateKind(String kindName, long kindId) {
- super(kindName, kindId);
- }
-
-}

Back to the top