summaryrefslogtreecommitdiffstats
path: root/offapi/org/libreoffice/embindtest/XTest.idl
blob: b3b5237ce2b4b51613fe2783853c229b15422aae (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

module org { module libreoffice { module embindtest {

interface XTest {
    boolean getBoolean();
    boolean isBoolean([in] boolean value);
    byte getByte();
    boolean isByte([in] byte value);
    short getShort();
    boolean isShort([in] short value);
    unsigned short getUnsignedShort();
    boolean isUnsignedShort([in] unsigned short value);
    long getLong();
    boolean isLong([in] long value);
    unsigned long getUnsignedLong();
    boolean isUnsignedLong([in] unsigned long value);
    hyper getHyper();
    boolean isHyper([in] hyper value);
    unsigned hyper getUnsignedHyper();
    boolean isUnsignedHyper([in] unsigned hyper value);
    float getFloat();
    boolean isFloat([in] float value);
    double getDouble();
    boolean isDouble([in] double value);
    char getChar();
    boolean isChar([in] char value);
    string getString();
    boolean isString([in] string value);
    type getType();
    boolean isType([in] type value);
    Enum getEnum();
    boolean isEnum([in] Enum value);
    Struct getStruct();
    boolean isStruct([in] Struct value);
    any getAnyVoid();
    boolean isAnyVoid([in] any value);
    any getAnyBoolean();
    boolean isAnyBoolean([in] any value);
    any getAnyByte();
    boolean isAnyByte([in] any value);
    any getAnyShort();
    boolean isAnyShort([in] any value);
    any getAnyUnsignedShort();
    boolean isAnyUnsignedShort([in] any value);
    any getAnyLong();
    boolean isAnyLong([in] any value);
    any getAnyUnsignedLong();
    boolean isAnyUnsignedLong([in] any value);
    any getAnyHyper();
    boolean isAnyHyper([in] any value);
    any getAnyUnsignedHyper();
    boolean isAnyUnsignedHyper([in] any value);
    any getAnyFloat();
    boolean isAnyFloat([in] any value);
    any getAnyDouble();
    boolean isAnyDouble([in] any value);
    any getAnyChar();
    boolean isAnyChar([in] any value);
    any getAnyString();
    boolean isAnyString([in] any value);
    any getAnyType();
    boolean isAnyType([in] any value);
    any getAnySequence();
    boolean isAnySequence([in] any value);
    any getAnyEnum();
    boolean isAnyEnum([in] any value);
    any getAnyStruct();
    boolean isAnyStruct([in] any value);
    any getAnyException();
    boolean isAnyException([in] any value);
    any getAnyInterface();
    boolean isAnyInterface([in] any value);
    sequence<boolean> getSequenceBoolean();
    boolean isSequenceBoolean([in] sequence<boolean> value);
    sequence<byte> getSequenceByte();
    boolean isSequenceByte([in] sequence<byte> value);
    sequence<short> getSequenceShort();
    boolean isSequenceShort([in] sequence<short> value);
    sequence<unsigned short> getSequenceUnsignedShort();
    boolean isSequenceUnsignedShort([in] sequence<unsigned short> value);
    sequence<long> getSequenceLong();
    boolean isSequenceLong([in] sequence<long> value);
    sequence<unsigned long> getSequenceUnsignedLong();
    boolean isSequenceUnsignedLong([in] sequence<unsigned long> value);
    sequence<hyper> getSequenceHyper();
    boolean isSequenceHyper([in] sequence<hyper> value);
    sequence<unsigned hyper> getSequenceUnsignedHyper();
    boolean isSequenceUnsignedHyper([in] sequence<unsigned hyper> value);
    sequence<float> getSequenceFloat();
    boolean isSequenceFloat([in] sequence<float> value);
    sequence<double> getSequenceDouble();
    boolean isSequenceDouble([in] sequence<double> value);
    sequence<char> getSequenceChar();
    boolean isSequenceChar([in] sequence<char> value);
    sequence<string> getSequenceString();
    boolean isSequenceString([in] sequence<string> value);
    sequence<type> getSequenceType();
    boolean isSequenceType([in] sequence<type> value);
    sequence<any> getSequenceAny();
    boolean isSequenceAny([in] sequence<any> value);
    sequence<sequence<string> > getSequenceSequenceString();
    boolean isSequenceSequenceString([in] sequence<sequence<string> > value);
    sequence<Enum> getSequenceEnum();
    boolean isSequenceEnum([in] sequence<Enum> value);
    sequence<Struct> getSequenceStruct();
    boolean isSequenceStruct([in] sequence<Struct> value);
    void throwRuntimeException();
};

}; }; };

/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */