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