Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'examples/org.eclipse.tm.tcf.examples.daytime/src/org/eclipse/tm/internal/tcf/examples/daytime/DaytimeServiceProxy.java')
-rw-r--r--examples/org.eclipse.tm.tcf.examples.daytime/src/org/eclipse/tm/internal/tcf/examples/daytime/DaytimeServiceProxy.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/org.eclipse.tm.tcf.examples.daytime/src/org/eclipse/tm/internal/tcf/examples/daytime/DaytimeServiceProxy.java b/examples/org.eclipse.tm.tcf.examples.daytime/src/org/eclipse/tm/internal/tcf/examples/daytime/DaytimeServiceProxy.java
index cefa9b92e..37e37d6d1 100644
--- a/examples/org.eclipse.tm.tcf.examples.daytime/src/org/eclipse/tm/internal/tcf/examples/daytime/DaytimeServiceProxy.java
+++ b/examples/org.eclipse.tm.tcf.examples.daytime/src/org/eclipse/tm/internal/tcf/examples/daytime/DaytimeServiceProxy.java
@@ -1,10 +1,10 @@
/*******************************************************************************
* Copyright (c) 2008 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
- *
+ * 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
+ *
* Contributors:
* Wind River Systems - initial API and implementation
*******************************************************************************/
@@ -26,7 +26,7 @@ public class DaytimeServiceProxy implements IDaytimeService {
}
/**
- * Return service name, as it appears on the wire - a TCF name of the service.
+ * Return service name, as it appears on the wire - a TCF name of the service.
*/
public String getName() {
return NAME;
@@ -36,7 +36,7 @@ public class DaytimeServiceProxy implements IDaytimeService {
* The method translates arguments to JSON string and sends the command message
* to remote server. When response arrives, it is translated from JSON to
* Java object, which are used to call call-back object.
- *
+ *
* The translation (marshaling) is done by using utility class Command.
*/
public IToken getTimeOfDay(String tz, final DoneGetTimeOfDay done) {
@@ -60,7 +60,7 @@ public class DaytimeServiceProxy implements IDaytimeService {
* the proxy object every time a TCF communication channel is opened.
* Note: extension point "org.eclipse.tm.tcf.startup" is used to load this class
* at TCF startup time, so proxy factory is properly activated even if nobody
- * import directly from this plugin.
+ * import directly from this plugin.
*/
Protocol.addChannelOpenListener(new Protocol.ChannelOpenListener() {

Back to the top