Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2011-12-09 07:28:12 +0000
committerUwe Stieber2011-12-09 07:28:12 +0000
commit565b530ee2abb7296a916efdcff905267f557638 (patch)
tree27b8c0b7e8e0f6b86c3196e7355066585ae92a3e /target_explorer/plugins/org.eclipse.tcf.te.core
parentdbf89346cb4e7ccb130ea8a9eded46cd0467e390 (diff)
downloadorg.eclipse.tcf-565b530ee2abb7296a916efdcff905267f557638.tar.gz
org.eclipse.tcf-565b530ee2abb7296a916efdcff905267f557638.tar.xz
org.eclipse.tcf-565b530ee2abb7296a916efdcff905267f557638.zip
Target Explorer: Rollback last 3 commits because of unresolvable issues with the Maven /Tycho build dependency resolution and the RXTX P2 repository.
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.core')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.core/META-INF/MANIFEST.MF1
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.core/src/org/eclipse/tcf/te/core/nodes/interfaces/wire/IWireTypeNetwork.java33
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.core/src/org/eclipse/tcf/te/core/nodes/interfaces/wire/IWireTypeSerial.java52
3 files changed, 0 insertions, 86 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.core/META-INF/MANIFEST.MF b/target_explorer/plugins/org.eclipse.tcf.te.core/META-INF/MANIFEST.MF
index ceeac7c35..27bdfda4c 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.core/META-INF/MANIFEST.MF
+++ b/target_explorer/plugins/org.eclipse.tcf.te.core/META-INF/MANIFEST.MF
@@ -20,5 +20,4 @@ Export-Package: org.eclipse.tcf.te.core.activator;x-internal:=true,
org.eclipse.tcf.te.core.async,
org.eclipse.tcf.te.core.async.interfaces,
org.eclipse.tcf.te.core.nls;x-internal:=true,
- org.eclipse.tcf.te.core.nodes.interfaces.wire,
org.eclipse.tcf.te.core.utils.text
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.core/src/org/eclipse/tcf/te/core/nodes/interfaces/wire/IWireTypeNetwork.java b/target_explorer/plugins/org.eclipse.tcf.te.core/src/org/eclipse/tcf/te/core/nodes/interfaces/wire/IWireTypeNetwork.java
deleted file mode 100644
index 658bcf386..000000000
--- a/target_explorer/plugins/org.eclipse.tcf.te.core/src/org/eclipse/tcf/te/core/nodes/interfaces/wire/IWireTypeNetwork.java
+++ /dev/null
@@ -1,33 +0,0 @@
-/**
- * INetworkWireType.java
- * Created on Nov 11, 2011
- *
- * Copyright (c) 2011 Wind River Systems, Inc.
- *
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
- */
-package org.eclipse.tcf.te.core.nodes.interfaces.wire;
-
-/**
- * The properties specific to the wire type "network".
- */
-public interface IWireTypeNetwork {
-
- /**
- * The data container.
- */
- public static String PROPERTY_CONTAINER_NAME = "network"; //$NON-NLS-1$
-
- /**
- * The network address.
- */
- public static final String PROPERTY_NETWORK_ADDRESS = "address"; //$NON-NLS-1$
-
- /**
- * The network port.
- */
- public static final String PROPERTY_NETWORK_PORT = "port"; //$NON-NLS-1$
-
-}
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.core/src/org/eclipse/tcf/te/core/nodes/interfaces/wire/IWireTypeSerial.java b/target_explorer/plugins/org.eclipse.tcf.te.core/src/org/eclipse/tcf/te/core/nodes/interfaces/wire/IWireTypeSerial.java
deleted file mode 100644
index 840985697..000000000
--- a/target_explorer/plugins/org.eclipse.tcf.te.core/src/org/eclipse/tcf/te/core/nodes/interfaces/wire/IWireTypeSerial.java
+++ /dev/null
@@ -1,52 +0,0 @@
-/**
- * INetworkWireType.java
- * Created on Nov 11, 2011
- *
- * Copyright (c) 2011 Wind River Systems, Inc.
- *
- * The right to copy, distribute, modify, or otherwise make use
- * of this software may be licensed only pursuant to the terms
- * of an applicable Wind River license agreement.
- */
-package org.eclipse.tcf.te.core.nodes.interfaces.wire;
-
-/**
- * The properties specific to the wire type "serial".
- */
-public interface IWireTypeSerial {
-
- /**
- * The data container.
- */
- public static String PROPERTY_CONTAINER_NAME = "serial"; //$NON-NLS-1$
-
- /**
- * The serial device name.
- */
- public static final String PROPERTY_SERIAL_DEVICE = "device"; //$NON-NLS-1$
-
- /**
- * The baud rate.
- */
- public static final String PROPERTY_SERIAL_BAUD_RATE = "baudrate"; //$NON-NLS-1$
-
- /**
- * The data bits
- */
- public static final String PROPERTY_SERIAL_DATA_BITS = "databits"; //$NON-NLS-1$
-
- /**
- * The parity
- */
- public static final String PROPERTY_SERIAL_PARITY = "parity"; //$NON-NLS-1$
-
- /**
- * The stop bits
- */
- public static final String PROPERTY_SERIAL_STOP_BITS = "stopbits"; //$NON-NLS-1$
-
- /**
- * The flow control
- */
- public static final String PROPERTY_SERIAL_FLOW_CONTROL = "flowcontrol"; //$NON-NLS-1$
-}

Back to the top