summaryrefslogtreecommitdiff
path: root/java/test/Ice/classLoader/Test.ice
diff options
context:
space:
mode:
Diffstat (limited to 'java/test/Ice/classLoader/Test.ice')
-rw-r--r--java/test/Ice/classLoader/Test.ice39
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