update credits
[LibreOffice.git] / cppuhelper / qa / propertysetmixin / types.idl
blobfd592ec60971cb106bdf977a316e6b14f518c5c9
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 #ifndef __testtools_servicetests_TestService1_idl__
20 #define __testtools_servicetests_TestService1_idl__
22 #include <com/sun/star/beans/Ambiguous.idl>
23 #include <com/sun/star/beans/Defaulted.idl>
24 #include <com/sun/star/beans/Optional.idl>
25 #include <com/sun/star/beans/PropertyVetoException.idl>
26 #include <com/sun/star/beans/UnknownPropertyException.idl>
27 #include <com/sun/star/lang/XComponent.idl>
28 #include <com/sun/star/uno/XInterface.idl>
30 module test { module cppuhelper { module propertysetmixin {
32 interface XTest1 {
33 [attribute] long First;
36 interface XTest2 {
37 [attribute, bound]
38 com::sun::star::beans::Ambiguous<
39 com::sun::star::beans::Defaulted<
40 com::sun::star::beans::Optional< long > > > Second
42 get raises (com::sun::star::beans::UnknownPropertyException);
43 set raises (
44 com::sun::star::beans::PropertyVetoException,
45 com::sun::star::beans::UnknownPropertyException);
49 interface XTest3 {
50 interface XTest1;
51 interface XTest2;
52 [attribute] long Third {
53 get raises (com::sun::star::beans::UnknownPropertyException);
54 set raises (com::sun::star::beans::UnknownPropertyException);
56 [attribute] long Fourth {
57 get raises (com::sun::star::beans::UnknownPropertyException);
58 set raises (com::sun::star::beans::UnknownPropertyException);
62 interface XSupplier {
63 com::sun::star::lang::XComponent getEmpty1();
65 com::sun::star::lang::XComponent getEmpty2();
67 XTest3 getFull();
70 service CppSupplier: XSupplier;
72 service JavaSupplier: XSupplier;
74 }; }; };
76 #endif