summaryrefslogtreecommitdiff
path: root/javae/demo/IceE/jdk/hello/HelloI.java
diff options
context:
space:
mode:
Diffstat (limited to 'javae/demo/IceE/jdk/hello/HelloI.java')
-rw-r--r--javae/demo/IceE/jdk/hello/HelloI.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/javae/demo/IceE/jdk/hello/HelloI.java b/javae/demo/IceE/jdk/hello/HelloI.java
deleted file mode 100644
index d192e1b95c3..00000000000
--- a/javae/demo/IceE/jdk/hello/HelloI.java
+++ /dev/null
@@ -1,36 +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.
-//
-// **********************************************************************
-
-import Demo.*;
-
-public class HelloI extends _HelloDisp
-{
- public void
- sayHello(int delay, Ice.Current current)
- {
- if(delay > 0)
- {
- try
- {
- Thread.currentThread().sleep(delay);
- }
- catch(InterruptedException ex1)
- {
- }
- }
- System.out.println("Hello World!");
- }
-
- public void
- shutdown(Ice.Current current)
- {
- System.out.println("Shutting down...");
- current.adapter.getCommunicator().shutdown();
- }
-}