Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/TestServerMode.java')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/TestServerMode.java47
1 files changed, 0 insertions, 47 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/TestServerMode.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/TestServerMode.java
deleted file mode 100644
index e68c6f38659..00000000000
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/core/environment/TestServerMode.java
+++ /dev/null
@@ -1,47 +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.core.environment;
-
-import javax.print.attribute.EnumSyntax;
-import org.eclipse.osee.framework.jdk.core.util.EnumBase;
-
-/**
- * @author Robert A. Fisher
- */
-public class TestServerMode extends EnumBase {
- private static final long serialVersionUID = 6600576749632500352L;
- public static final TestServerMode MULTI = new TestServerMode(0);
- public static final TestServerMode SINGLE = new TestServerMode(1);
- private static final String[] stringTable = new String[] {"multi", "single"};
- private static final TestServerMode[] enumValueTable = new TestServerMode[] {MULTI, SINGLE};
-
- private TestServerMode(int value) {
- super(value);
- }
-
- public static TestServerMode toEnum(String str) {
- return (TestServerMode) getEnum(str, stringTable, enumValueTable);
- }
-
- protected static TestServerMode toEnum(int value) {
- return (TestServerMode) getEnum(value, enumValueTable);
- }
-
- @Override
- protected String[] getStringTable() {
- return stringTable;
- }
-
- @Override
- protected EnumSyntax[] getEnumValueTable() {
- return enumValueTable;
- }
-} \ No newline at end of file

Back to the top