Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / testtools / source / bridgetest / cli / cli_cs_multi.cs
blobffd2d42a28e9c8129a6e76f75c2b5c30e008a247
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 namespace testtools { namespace bridgetest { namespace cli_cs {
21 public class Multi: unoidl.test.testtools.bridgetest.XMulti
23 public Multi()
27 public double att1
29 get { return _att1; }
30 set { _att1 = value; }
33 public int fn11(int arg)
35 return 11 * arg;
38 public string fn12(string arg)
40 return "12" + arg;
43 public int fn21(int arg)
45 return 21 * arg;
48 public string fn22(string arg)
50 return "22" + arg;
53 public double att3
55 get { return _att3; }
56 set { _att3 = value; }
59 public int fn31(int arg)
61 return 31 * arg;
64 public string fn32(string arg)
66 return "32" + arg;
69 public int fn33()
71 return 33;
74 public int fn41(int arg)
76 return 41 * arg;
79 public int fn61(int arg)
81 return 61 * arg;
84 public string fn62(string arg)
86 return "62" + arg;
89 public int fn71(int arg)
91 return 71 * arg;
94 public string fn72(string arg)
96 return "72" + arg;
99 public int fn73()
101 return 73;
104 private double _att1;
105 private double _att3;
108 } } }