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/data/DDSTypeSupport.java')
-rw-r--r--plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/data/DDSTypeSupport.java53
1 files changed, 0 insertions, 53 deletions
diff --git a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/data/DDSTypeSupport.java b/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/data/DDSTypeSupport.java
deleted file mode 100644
index 61a427c0417..00000000000
--- a/plugins/org.eclipse.osee.ote.core/src/org/eclipse/osee/ote/message/data/DDSTypeSupport.java
+++ /dev/null
@@ -1,53 +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.data;
-
-import org.eclipse.osee.ote.messaging.dds.service.Key;
-import org.eclipse.osee.ote.messaging.dds.service.TypeSupport;
-
-/**
- * @author Andrew M. Finkbeiner
- */
-public class DDSTypeSupport extends TypeSupport {
-
- private final Key key;
- private final String readerName;
- private final String writerName;
- private final int size;
-
- public DDSTypeSupport(Key key, String readerName, String writerName, int size) {
- this.key = key;
- this.readerName = readerName;
- this.writerName = writerName;
- this.size = size;
- }
-
- @Override
- protected Key getKey() {
- return key;
- }
-
- @Override
- protected String getReaderName() {
- return this.readerName;
- }
-
- @Override
- protected int getTypeDataSize() {
- return this.size;
- }
-
- @Override
- protected String getWriterName() {
- return this.writerName;
- }
-
-}

Back to the top