diff options
author | Mark Spruiell <mes@zeroc.com> | 2001-11-13 00:25:37 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2001-11-13 00:25:37 +0000 |
commit | 5c166c92f1e3a84bc3b69cbd7ad95d47400d02bd (patch) | |
tree | dad9ca609bd8c0f49a9f10bdeaf7aa860ef0c02a /java/src/Ice/Util.java | |
parent | batch request change (diff) | |
download | ice-5c166c92f1e3a84bc3b69cbd7ad95d47400d02bd.tar.bz2 ice-5c166c92f1e3a84bc3b69cbd7ad95d47400d02bd.tar.xz ice-5c166c92f1e3a84bc3b69cbd7ad95d47400d02bd.zip |
beginning port from C++
Diffstat (limited to 'java/src/Ice/Util.java')
-rw-r--r-- | java/src/Ice/Util.java | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/java/src/Ice/Util.java b/java/src/Ice/Util.java new file mode 100644 index 00000000000..c3608e65985 --- /dev/null +++ b/java/src/Ice/Util.java @@ -0,0 +1,44 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +package Ice; + +public final class Util +{ + public static Properties + getDefaultProperties(String[] args) + { + return null; + } + + public static Properties + createProperties(String[] args) + { + return null; + } + + public static Properties + createPropertiesFromFile(String[] args, String configFile) + { + return null; + } + + public static Communicator + initialize(String[] args) + { + return null; + } + + public static Communicator + initializeWithProperties(Properties properties) + { + return null; + } +} |