summaryrefslogtreecommitdiff
path: root/java/demo/Freeze/library/Client.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/demo/Freeze/library/Client.java')
-rw-r--r--java/demo/Freeze/library/Client.java25
1 files changed, 25 insertions, 0 deletions
diff --git a/java/demo/Freeze/library/Client.java b/java/demo/Freeze/library/Client.java
new file mode 100644
index 00000000000..a1ce70b0caa
--- /dev/null
+++ b/java/demo/Freeze/library/Client.java
@@ -0,0 +1,25 @@
+// **********************************************************************
+//
+// Copyright (c) 2001
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+public class Client extends Ice.Application
+{
+ public int
+ run(String[] args)
+ {
+ return RunParser.runParser(appName(), args, communicator());
+ }
+
+ static public void
+ main(String[] args)
+ {
+ Client app = new Client();
+ app.main("demo.Freeze.phonebook.Client", args, "config");
+ }
+}