Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2006-12-28 08:02:01 +0000
committerslewis2006-12-28 08:02:01 +0000
commit2908209bed4b802ae30c82eda86f7ce4e4a67546 (patch)
treeaabde8926051d3291bb8d660f5f4dfe205a485ba /examples/bundles/org.eclipse.ecf.example.clients
parent53a4b41227df3e37a2e1293a444882ef7a2d50b8 (diff)
downloadorg.eclipse.ecf-2908209bed4b802ae30c82eda86f7ce4e4a67546.tar.gz
org.eclipse.ecf-2908209bed4b802ae30c82eda86f7ce4e4a67546.tar.xz
org.eclipse.ecf-2908209bed4b802ae30c82eda86f7ce4e4a67546.zip
Added IPresenceContainerAdapter.getChatManager() for access to chat message sending/receiving. Deprecated IMessageListener and IMessageSender and appropriate methods in IPresenceContainerAdapter. Changed implementations in xmpp. Updated javadocs to include new org.eclipse.ecf.presence.im package.
Diffstat (limited to 'examples/bundles/org.eclipse.ecf.example.clients')
-rw-r--r--examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/RobotApplication.java4
-rw-r--r--examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/XMPPChatClient.java6
2 files changed, 5 insertions, 5 deletions
diff --git a/examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/RobotApplication.java b/examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/RobotApplication.java
index 71026947a..790997dcf 100644
--- a/examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/RobotApplication.java
+++ b/examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/RobotApplication.java
@@ -12,8 +12,8 @@ import org.eclipse.core.runtime.IPlatformRunnable;
import org.eclipse.ecf.core.identity.ID;
import org.eclipse.ecf.core.util.ECFException;
import org.eclipse.ecf.presence.IMessageListener;
-import org.eclipse.ecf.presence.chat.IChatRoomMessageSender;
-import org.eclipse.ecf.presence.chat.IChatRoomContainer;
+import org.eclipse.ecf.presence.chatroom.IChatRoomContainer;
+import org.eclipse.ecf.presence.chatroom.IChatRoomMessageSender;
/**
* To be started as an application. Go to Run->Run..., create a new Eclipse
diff --git a/examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/XMPPChatClient.java b/examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/XMPPChatClient.java
index 99645cfff..95c2e5385 100644
--- a/examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/XMPPChatClient.java
+++ b/examples/bundles/org.eclipse.ecf.example.clients/src/org/eclipse/ecf/example/clients/XMPPChatClient.java
@@ -19,9 +19,9 @@ import org.eclipse.ecf.core.util.ECFException;
import org.eclipse.ecf.presence.IMessageListener;
import org.eclipse.ecf.presence.IMessageSender;
import org.eclipse.ecf.presence.IPresenceContainerAdapter;
-import org.eclipse.ecf.presence.chat.IChatRoomContainer;
-import org.eclipse.ecf.presence.chat.IChatRoomManager;
-import org.eclipse.ecf.presence.chat.IChatRoomInfo;
+import org.eclipse.ecf.presence.chatroom.IChatRoomContainer;
+import org.eclipse.ecf.presence.chatroom.IChatRoomInfo;
+import org.eclipse.ecf.presence.chatroom.IChatRoomManager;
public class XMPPChatClient {

Back to the top