Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Torregrosa Paez2016-06-07 09:24:08 +0000
committerPablo Torregrosa Paez2016-06-07 09:24:08 +0000
commit2b0ef307d74b1b068bccad9f0bb60354a45c7f7d (patch)
tree833002f98be8a900e40b15ed1b6a3760ed0616bc
parentfb3d8bfce74199b789368682ff85b1d692e85d5b (diff)
downloadorg.eclipse.tcf-2b0ef307d74b1b068bccad9f0bb60354a45c7f7d.tar.gz
org.eclipse.tcf-2b0ef307d74b1b068bccad9f0bb60354a45c7f7d.tar.xz
org.eclipse.tcf-2b0ef307d74b1b068bccad9f0bb60354a45c7f7d.zip
Target Explorer: Connection mode is required to validate a kernel image1.4_WR_20160617_4.8.01.4_WR_20160617_4.8.0_bugfix
Change-Id: I89cee2f8fa15b9381172bd4a9d833a64977b37c8 Signed-off-by: Pablo Torregrosa Paez <pablo.torregrosa@windriver.com>
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.ui.controls/src/org/eclipse/tcf/te/ui/controls/interfaces/ISimulatorServiceUIDelegate.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.ui.controls/src/org/eclipse/tcf/te/ui/controls/interfaces/ISimulatorServiceUIDelegate.java b/target_explorer/plugins/org.eclipse.tcf.te.ui.controls/src/org/eclipse/tcf/te/ui/controls/interfaces/ISimulatorServiceUIDelegate.java
index 8d3cb03c2..ffb16ae81 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.ui.controls/src/org/eclipse/tcf/te/ui/controls/interfaces/ISimulatorServiceUIDelegate.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.ui.controls/src/org/eclipse/tcf/te/ui/controls/interfaces/ISimulatorServiceUIDelegate.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2013, 2014 Wind River Systems, Inc. and others. All rights reserved.
+ * Copyright (c) 2013, 2016 Wind River Systems, Inc. and others. 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
@@ -87,8 +87,9 @@ public interface ISimulatorServiceUIDelegate {
*
* @param path The path. Must not be <code>null</code>.
* @param messageProvider The message provider. Must not be <code>null</code>:
+ * @param mode The connection mode.
*
* @return <code>True</code> if the given kernel image path is valid, <code>false</code> otherwise.
*/
- public boolean validateKernelImage(IPath path, BaseControl messageProvider);
+ public boolean validateKernelImage(IPath path, BaseControl messageProvider, String mode);
}

Back to the top