summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/namespacemd/InitialI.cs
blob: 72733708e9181790620e232fc78c3eadfac4283d (plain)
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
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

namespace Ice
{
    namespace namespacemd
    {
        public class InitialI : Test.InitialDisp_
        {
            public override NoNamespace.C1 getNoNamespaceC2AsC1(Current current = null)
            {
                return new NoNamespace.C2();
            }

            public override NoNamespace.C2 getNoNamespaceC2AsC2(Current current = null)
            {
                return new NoNamespace.C2();
            }

            public override WithNamespace.C1 getWithNamespaceC2AsC1(Current current = null)
            {
                return new WithNamespace.C2();
            }

            public override WithNamespace.C2 getWithNamespaceC2AsC2(Current current = null)
            {
                return new WithNamespace.C2();
            }

            public override void shutdown(Current current = null)
            {
                current.adapter.getCommunicator().shutdown();
            }

            public override void throwNoNamespaceE2AsE1(Current current = null)
            {
                throw new NoNamespace.E2();
            }

            public override void throwNoNamespaceE2AsE2(Current current = null)
            {
                throw new NoNamespace.E2();
            }

            public override void throwNoNamespaceNotify(Current current = null)
            {
                throw new NoNamespace.@notify();
            }

            public override void throwWithNamespaceE2AsE1(Current current = null)
            {
                throw new WithNamespace.E2();
            }

            public override void throwWithNamespaceE2AsE2(Current current = null)
            {
                throw new WithNamespace.E2();
            }
        }
    }
}