Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2012-08-10 17:32:35 +0000
committerEugene Tarassov2012-08-10 17:32:35 +0000
commit87db079b512afec89f418e1b2797d9da2127e112 (patch)
tree5ce77a0d88b1c770d7e38b7213672320f1eddd6a /plugins
parent343da1e67a28b06a4b0327e8fb67e1d060171d2e (diff)
downloadorg.eclipse.tcf-87db079b512afec89f418e1b2797d9da2127e112.tar.gz
org.eclipse.tcf-87db079b512afec89f418e1b2797d9da2127e112.tar.xz
org.eclipse.tcf-87db079b512afec89f418e1b2797d9da2127e112.zip
TCF Examples: added code formating preferences in org.eclipse.tcf.examples.presentation
Diffstat (limited to 'plugins')
-rw-r--r--plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/debug/ui/ITCFModel.java8
-rw-r--r--plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFRunnable.java2
2 files changed, 5 insertions, 5 deletions
diff --git a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/debug/ui/ITCFModel.java b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/debug/ui/ITCFModel.java
index c2eab35f3..d266276bf 100644
--- a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/debug/ui/ITCFModel.java
+++ b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/debug/ui/ITCFModel.java
@@ -27,25 +27,25 @@ public interface ITCFModel {
* @return IChannel interface.
*/
IChannel getChannel();
-
+
/**
* Get display that is used by this model.
* @return Display object.
*/
Display getDisplay();
-
+
/**
* Get launch object associated with this model.
* @return Launch object.
*/
Launch getLaunch();
-
+
/**
* Get model object with given ID.
* @param id - TCF ID of remote object.
* @return ITCFObject interface or null - if model does not include such object.
* Note that the model is built lazily (on demand): getNode() can return null even if
- * "id" is valid ID of existing remote object.
+ * "id" is valid ID of existing remote object.
*/
ITCFObject getNode(String id);
}
diff --git a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFRunnable.java b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFRunnable.java
index 58dd614d4..b53ebd5f3 100644
--- a/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFRunnable.java
+++ b/plugins/org.eclipse.tcf.debug.ui/src/org/eclipse/tcf/internal/debug/ui/model/TCFRunnable.java
@@ -17,7 +17,7 @@ import org.eclipse.tcf.protocol.Protocol;
/**
* TCFRunnable is a wrapper for IRequest.
- * It implements Runnable interface and is used by TCFModel to handle the request.
+ * It implements Runnable interface and is used by TCFModel to handle the request.
*/
public abstract class TCFRunnable implements Runnable {

Back to the top