Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2013-10-18 07:26:01 +0000
committerUwe Stieber2013-10-18 07:29:27 +0000
commitdfa8d4958e95ac80ece0851037724a44981f0126 (patch)
tree8be528b82a48e22014b676f82637db1aacf6a16b /target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls
parent53d159059c799315047d4066d0d9c6043412a78c (diff)
downloadorg.eclipse.tcf-dfa8d4958e95ac80ece0851037724a44981f0126.tar.gz
org.eclipse.tcf-dfa8d4958e95ac80ece0851037724a44981f0126.tar.xz
org.eclipse.tcf-dfa8d4958e95ac80ece0851037724a44981f0126.zip
Target Explorer: Provide a TCP only transport section implementation
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.java6
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.properties6
2 files changed, 10 insertions, 2 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.java b/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.java
index 67da4c3dc..714dc533c 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.java
@@ -77,6 +77,9 @@ public class Messages extends NLS {
public static String TransportSection_title;
public static String TransportSection_description;
+ public static String TcpTransportSection_title;
+ public static String TcpTransportSection_description;
+
public static String ServicesSection_title;
public static String ServicesSection_description;
public static String ServicesSection_group_local_title;
@@ -114,9 +117,10 @@ public class Messages extends NLS {
public static String MyNetworkAddressControl_information_missingTargetNameAddress;
public static String MyNetworkAddressControl_error_invalidTargetNameAddress;
public static String MyNetworkAddressControl_error_invalidTargetIpAddress;
- public static String MyRemoteHostAddressControl_error_targetNameNotResolveable;
public static String MyNetworkAddressControl_information_checkNameAddressUserInformation;
+ public static String MyRemoteHostAddressControl_label;
+
public static String PipeNameControl_label;
public static String PipeNameControl_information_missingValue;
public static String PipeNameControl_error_invalidValue;
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.properties b/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.properties
index 2e6c669bc..2687838d5 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.properties
+++ b/target_explorer/plugins/org.eclipse.tcf.te.tcf.ui/src/org/eclipse/tcf/te/tcf/ui/nls/Messages.properties
@@ -36,6 +36,9 @@ LabelProviderDelegate_state_4=Waiting to become Ready
TransportSection_title=Transport
TransportSection_description=Select the transport type used to communicate with the target.
+TcpTransportSection_title=Address
+TcpTransportSection_description=Specify the target agent's address and port.
+
ServicesSection_title=Services
ServicesSection_description=This section describes the services.
ServicesSection_group_local_title=Local Services
@@ -73,9 +76,10 @@ MyNetworkAddressControl_label=Host:
MyNetworkAddressControl_information_missingTargetNameAddress=Please enter a valid target host name or IP address.
MyNetworkAddressControl_error_invalidTargetNameAddress=Target host name or IP address is not valid.
MyNetworkAddressControl_error_invalidTargetIpAddress=Target host IP address is not valid.
-MyRemoteHostAddressControl_error_targetNameNotResolveable=Cannot resolve the target host name to a valid IP address.
MyNetworkAddressControl_information_checkNameAddressUserInformation=The target host name can be validated by pressing the check button.
+MyRemoteHostAddressControl_label=Address:
+
PipeNameControl_label=Pipe Name:
PipeNameControl_information_missingValue=Please enter a valid pipe name.
PipeNameControl_error_invalidValue=Pipe name is not valid.

Back to the top