Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-02-01 12:41:09 +0000
committerUwe Stieber2012-02-02 06:19:59 +0000
commit89e9991b3bd5db53ae39175960426cc362860e53 (patch)
tree76c87f74575a7939d663226124319fce762725d6 /target_explorer/plugins/org.eclipse.tcf.te.runtime.services
parenta23e1e19ea1bf0f6efd05b9fcfea10b9628dfaf1 (diff)
downloadorg.eclipse.tcf-89e9991b3bd5db53ae39175960426cc362860e53.tar.gz
org.eclipse.tcf-89e9991b3bd5db53ae39175960426cc362860e53.tar.xz
org.eclipse.tcf-89e9991b3bd5db53ae39175960426cc362860e53.zip
Target Explorer: Fix typo's in javadoc
Diffstat (limited to 'target_explorer/plugins/org.eclipse.tcf.te.runtime.services')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/ITerminalService.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/ITerminalService.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/ITerminalService.java
index 5b5aaacf7..577960953 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/ITerminalService.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime.services/src/org/eclipse/tcf/te/runtime/services/interfaces/ITerminalService.java
@@ -22,7 +22,7 @@ public interface ITerminalService extends IService {
/**
* Opens a terminal asynchronously and invokes the given callback if done.
*
- * @param properties The terminal properties. Must be not <code>null</code>.
+ * @param properties The terminal properties. Must not be <code>null</code>.
* @param callback The target callback to invoke if finished or <code>null</code>.
*/
public void openConsole(IPropertiesContainer properties, ICallback callback);
@@ -30,7 +30,7 @@ public interface ITerminalService extends IService {
/**
* Close the terminal asynchronously and invokes the given callback if done.
*
- * @param properties The terminal properties. Must be not <code>null</code>.
+ * @param properties The terminal properties. Must not be <code>null</code>.
* @param callback The target callback to invoke if finished or <code>null</code>.
*/
public void closeConsole(IPropertiesContainer properties, ICallback callback);
@@ -38,7 +38,7 @@ public interface ITerminalService extends IService {
/**
* Terminate (disconnect) the terminal asynchronously and invokes the given callback if done.
*
- * @param properties The terminal properties. Must be not <code>null</code>.
+ * @param properties The terminal properties. Must not be <code>null</code>.
* @param callback The target callback to invoke if finished or <code>null</code>.
*/
public void terminateConsole(IPropertiesContainer properties, ICallback callback);

Back to the top