summaryrefslogtreecommitdiff
path: root/javae/demo/IceE/midp/chat/ChatCallbackI.java
diff options
context:
space:
mode:
Diffstat (limited to 'javae/demo/IceE/midp/chat/ChatCallbackI.java')
-rw-r--r--javae/demo/IceE/midp/chat/ChatCallbackI.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/javae/demo/IceE/midp/chat/ChatCallbackI.java b/javae/demo/IceE/midp/chat/ChatCallbackI.java
deleted file mode 100644
index 0d07c8583d7..00000000000
--- a/javae/demo/IceE/midp/chat/ChatCallbackI.java
+++ /dev/null
@@ -1,25 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice-E is licensed to you under the terms described in the
-// ICEE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-public class ChatCallbackI extends Demo._ChatCallbackDisp
-{
- public
- ChatCallbackI(Console console)
- {
- _console = console;
- }
-
- public void
- message(String data, Ice.Current current)
- {
- _console.addText(data + "\n");
- }
-
- private Console _console;
-}