Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2015-04-07 15:25:18 +0000
committerUwe Stieber2015-04-07 15:25:40 +0000
commite699e3620082d243671cbcc2666f71e87a7a29c9 (patch)
tree32d54040ab6907407af73ad8ad7dc038991dfa7c
parent532c49295ee3f7a9d90818a402d7e51854b73294 (diff)
downloadorg.eclipse.tcf-e699e3620082d243671cbcc2666f71e87a7a29c9.tar.gz
org.eclipse.tcf-e699e3620082d243671cbcc2666f71e87a7a29c9.tar.xz
org.eclipse.tcf-e699e3620082d243671cbcc2666f71e87a7a29c9.zip
Target Explorer: Extend ISimulatorServiceUIDelegate interface
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.ui.controls/src/org/eclipse/tcf/te/ui/controls/interfaces/ISimulatorServiceUIDelegate.java15
1 files changed, 9 insertions, 6 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 65e3599b0..239c5cfd9 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
@@ -51,7 +51,7 @@ public interface ISimulatorServiceUIDelegate {
public Image getImage();
/**
- * Get a description fo rthe given config.
+ * Get a description for the given config.
* This description is shown i.e. as tooltip of the configure button.
* @param context The context for which the simulator should be configured.
* @param config The configuration or <code>null</code>.
@@ -61,7 +61,7 @@ public interface ISimulatorServiceUIDelegate {
/**
* Get properties for ui configuration.
- * @param context The conetxt.
+ * @param context The context.
* @param config The current config.
* @return The properties for ui configuartion
*/
@@ -93,9 +93,12 @@ public interface ISimulatorServiceUIDelegate {
/**
* Do additional validation for a given valid kernel image path.
* I.e. check for further needed files and set message to the messageProvider
- * @param path
- * @param messageProvider
- * @return
+ *
+ * @param path The path. Must not be <code>null</code>.
+ * @param path The BSP. Must not be <code>null</code>.
+ * @param messageProvider The message provider. Must not be <code>null</code>:
+ *
+ * @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, String bsp, BaseControl messageProvider);
}

Back to the top