summaryrefslogtreecommitdiff
path: root/java/demo/Freeze/library/Client.java
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2002-03-13 17:40:34 +0000
committerMatthew Newhook <matthew@zeroc.com>2002-03-13 17:40:34 +0000
commit56ff80265761eda3f54ef343c3654dd1aa4cce0c (patch)
tree56ca3d6b054f7edfe5c1f06f131d81656f2111ed /java/demo/Freeze/library/Client.java
parentAdded project files for Freeze/library demo (diff)
downloadice-56ff80265761eda3f54ef343c3654dd1aa4cce0c.tar.bz2
ice-56ff80265761eda3f54ef343c3654dd1aa4cce0c.tar.xz
ice-56ff80265761eda3f54ef343c3654dd1aa4cce0c.zip
Added Freeze/library demo.
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");
+ }
+}