1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 namespace testtools { namespace bridgetest { namespace cli_cs {
25 
26 public class Multi: unoidl.test.testtools.bridgetest.XMulti
27 {
Multi()28     public Multi()
29     {
30     }
31 
32     public double att1
33     {
34         get { return _att1; }
35         set { _att1 = value; }
36     }
37 
fn11(int arg)38     public int fn11(int arg)
39     {
40         return 11 * arg;
41     }
42 
fn12(string arg)43     public string fn12(string arg)
44     {
45         return "12" + arg;
46     }
47 
fn21(int arg)48     public int fn21(int arg)
49     {
50         return 21 * arg;
51     }
52 
fn22(string arg)53     public string fn22(string arg)
54     {
55         return "22" + arg;
56     }
57 
58     public double att3
59     {
60         get { return _att3; }
61         set { _att3 = value; }
62     }
63 
fn31(int arg)64     public int fn31(int arg)
65     {
66         return 31 * arg;
67     }
68 
fn32(string arg)69     public string fn32(string arg)
70     {
71         return "32" + arg;
72     }
73 
fn33()74     public int fn33()
75     {
76         return 33;
77     }
78 
fn41(int arg)79     public int fn41(int arg)
80     {
81         return 41 * arg;
82     }
83 
fn61(int arg)84     public int fn61(int arg)
85     {
86         return 61 * arg;
87     }
88 
fn62(string arg)89     public string fn62(string arg)
90     {
91         return "62" + arg;
92     }
93 
fn71(int arg)94     public int fn71(int arg)
95     {
96         return 71 * arg;
97     }
98 
fn72(string arg)99     public string fn72(string arg)
100     {
101         return "72" + arg;
102     }
103 
fn73()104     public int fn73()
105     {
106         return 73;
107     }
108 
109     private double _att1;
110     private double _att3;
111 };
112 
113 } } }
114 
115 
116