1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
module Test
{
interface i1
{
void op();
void op();
}
interface i2
{
void op();
void oP();
}
class c1
{
long l;
void l();
}
class c2
{
long l;
void L();
}
module m1
{}
module m1
{}
module M1
{}
module c1
{}
module C1
{}
interface i3
{
void op(long aa, int aa);
void op2(long bb, out int BB);
}
interface i4
{
void I4();
}
interface i5
{
void i5();
}
interface i6
{
void op();
}
interface i7 extends i6
{
void op();
}
interface i8 extends i6
{
void OP();
}
class c3
{
long l;
}
class c4 extends c3
{
void l();
}
class c5 extends c3
{
void L();
}
class c6
{
long l;
void L();
}
class c7 extends c3
{
long l;
}
class c8 extends c3
{
long L;
}
class c9
{
void L();
long l;
}
exception e1
{
long l;
string l;
}
exception e2
{
long l;
string L;
}
exception e3
{
long e3;
}
exception e4
{
long E4;
}
exception e5
{
long l;
}
exception e6 extends e5
{
string l;
}
exception e7 extends e5
{
string L;
}
struct s1
{
long l;
string l;
}
struct s2
{
long l;
string L;
}
struct s3
{
long s3;
string x;
}
struct s4
{
long S4;
string x;
}
sequence<long> ls;
sequence<long> LS;
sequence<long> m1;
sequence<long> M1;
dictionary<long, string> d;
dictionary<long, string> D;
dictionary<long, string> m1;
dictionary<long, string> M1;
enum en1 { red }
enum eN1 { lilac }
enum m1 { green }
enum M1 { blue }
enum en2 { yellow, en1, EN1}
module xxx
{
module xx
{
interface Base
{
void op();
}
interface Derived extends Base
{
}
interface Derived extends base
{
}
exception e1
{
}
exception e2 extends E1
{
}
sequence<long> s1;
struct s
{
S1 x;
xxx::xx::S1 y;
xxx::XX::s1 z;
xxx::XX::s1 w;
}
struct s2
{
Derived* blah;
derived* bletch;
}
}
}
interface Foo
{
void op(long param, string Param);
void op2() throws e1;
void op3() throws E1;
void op4() throws Test::xxx::xx::e1;
void op5() throws Test::xxx::xx::E1;
void op6() throws Test::xxx::XX::e1;
void op7() throws Test::XXX::xx::e1;
void op8() throws ::Test::xxx::xx::e1;
void op9() throws ::Test::xxx::xx::E1;
void op10() throws ::Test::xxx::XX::e1;
void op11() throws ::Test::XXX::xx::e1;
void op12(long op12);
void op13(long OP13);
}
module CI
{
interface base1
{
void op();
}
interface base2
{
void OP();
}
interface derived extends base1, base2
{
}
}
module DI
{
interface base
{
void aa(int AA);
void xx(int base);
}
class base1
{
int base1;
void aa(int BASE1);
void bb(int base1, string BASE1);
}
struct Foo
{
int foo;
}
struct Foo1
{
int Foo1;
}
exception Bar
{
string bar;
}
exception Bar1
{
string Bar1;
}
class base2
{
int X;
}
class derived2 extends base2
{
string x;
}
}
}
|