bump product version to 4.1.6.2
[LibreOffice.git] / ridljar / com / sun / star / uno / IMethodDescription.java
blobffc9833e0500e28821ff54cbbc1164aabf6168d6
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 package com.sun.star.uno;
22 import java.lang.reflect.Method;
25 /**
26 * The <code>IMethodDescription</code> allows to examine a method
27 * in detail. It gives a view to java methods from a UNO point.
29 * @deprecated This interface does not cover all the features supported by the
30 * corresponding (unpublished) implementation. But no client code should need
31 * to access this functionality, anyway.
33 public interface IMethodDescription extends IMemberDescription {
34 /**
35 * Indicates if this method is <code>oneWay</code>,
36 * respectivly if this method may become executed asynchronously.
37 * <p>
38 * @return true means may execute asynchronously .
40 boolean isOneway();
42 /**
43 * Indicates if this method is const.
44 * <p>
45 * @return true means it is const.
47 boolean isConst();
49 /**
50 * Gives any array of <code>ITypeDescription> of
51 * the [in] parameters.
52 * <p>
53 * @return the in parameters
55 ITypeDescription[] getInSignature();
57 /**
58 * Gives any array of <code>ITypeDescription> of
59 * the [out] parameters.
60 * <p>
61 * @return the out parameters
63 ITypeDescription[] getOutSignature();
65 /**
66 * Gives the <code>ITypeDescription</code> of
67 * the return type.
68 * <p>
69 * @return the return type <code>ITypeDescription</code>
71 ITypeDescription getReturnSignature();
73 /**
74 * Gives native java method of this method.
75 * <p>
76 * @return the java methodd
78 Method getMethod();