Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbbokowski2007-05-05 01:59:00 +0000
committerbbokowski2007-05-05 01:59:00 +0000
commit6b0cc370c5200b7a0c7b363178db9c25cdb76372 (patch)
treeff6d7c82136243ad04b7cd70b224e4d32561f556
parentdf72310aec71fc9f3be0a09181e8f694757ea5c8 (diff)
downloadorg.eclipse.ecf-6b0cc370c5200b7a0c7b363178db9c25cdb76372.tar.gz
org.eclipse.ecf-6b0cc370c5200b7a0c7b363178db9c25cdb76372.tar.xz
org.eclipse.ecf-6b0cc370c5200b7a0c7b363178db9c25cdb76372.zip
Added myself to the contributors list
-rw-r--r--examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/applications/ChatRoomRobotApplication.java16
1 files changed, 1 insertions, 15 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/applications/ChatRoomRobotApplication.java b/examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/applications/ChatRoomRobotApplication.java
index 6ee0e345a..56683e048 100644
--- a/examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/applications/ChatRoomRobotApplication.java
+++ b/examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/applications/ChatRoomRobotApplication.java
@@ -5,6 +5,7 @@
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Composent, Inc. - initial API and implementation
+ * Boris Bokowski, IBM
******************************************************************************/
package org.eclipse.ecf.example.clients.applications;
@@ -37,11 +38,6 @@ public class ChatRoomRobotApplication implements IApplication,
private String userName;
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.equinox.app.IApplication#start(org.eclipse.equinox.app.IApplicationContext)
- */
public Object start(IApplicationContext context) throws Exception {
Object[] args = context.getArguments().values().toArray();
while (args[0] instanceof Object[])
@@ -64,11 +60,6 @@ public class ChatRoomRobotApplication implements IApplication,
return new Integer(-1);
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.equinox.app.IApplication#stop()
- */
public void stop() {
}
@@ -128,11 +119,6 @@ public class ChatRoomRobotApplication implements IApplication,
}
}
- /*
- * (non-Javadoc)
- *
- * @see org.eclipse.ecf.presence.IIMMessageListener#handleMessageEvent(org.eclipse.ecf.presence.IIMMessageEvent)
- */
public void handleMessageEvent(IIMMessageEvent messageEvent) {
if (messageEvent instanceof IChatRoomMessageEvent) {
IChatRoomMessage m = ((IChatRoomMessageEvent) messageEvent)

Back to the top