ICE 3.4.2
[php5-ice-freebsdport.git] / java / test / Ice / classLoader / Test.ice
blob1811218e897b104dc630edb9b0ace970e25679f3
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2011 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
10 #ifndef TEST_ICE
11 #define TEST_ICE
13 [["java:package:test.Ice.classLoader"]]
14 module Test
17 class ConcreteClass
19     int i;
22 class AbstractClass
24     void op();
27 exception E {};
29 interface Initial
31     ConcreteClass getConcreteClass();
32     AbstractClass getAbstractClass();
33     void throwException() throws E;
34     void shutdown();
39 #endif