diff options
author | Mark Spruiell <mes@zeroc.com> | 2009-09-04 12:34:41 -0700 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2009-09-04 12:34:41 -0700 |
commit | a86b114d82c678b49ab2b43c16abff1f8239d5d6 (patch) | |
tree | db649f2762d87a991de02b2c2c641029a01cac85 /java/test/Ice/classLoader/Test.ice | |
parent | Converted demo projects to VS2008 (diff) | |
download | ice-a86b114d82c678b49ab2b43c16abff1f8239d5d6.tar.bz2 ice-a86b114d82c678b49ab2b43c16abff1f8239d5d6.tar.xz ice-a86b114d82c678b49ab2b43c16abff1f8239d5d6.zip |
bug 4196 - add class loader to InitializationData
Diffstat (limited to 'java/test/Ice/classLoader/Test.ice')
-rw-r--r-- | java/test/Ice/classLoader/Test.ice | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/java/test/Ice/classLoader/Test.ice b/java/test/Ice/classLoader/Test.ice new file mode 100644 index 00000000000..b1dbd09b8fc --- /dev/null +++ b/java/test/Ice/classLoader/Test.ice @@ -0,0 +1,39 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#ifndef TEST_ICE +#define TEST_ICE + +[["java:package:test.Ice.classLoader"]] +module Test +{ + +class ConcreteClass +{ + int i; +}; + +class AbstractClass +{ + void op(); +}; + +exception E {}; + +interface Initial +{ + ConcreteClass getConcreteClass(); + AbstractClass getAbstractClass(); + void throwException() throws E; + void shutdown(); +}; + +}; + +#endif |