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
;
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
{
35 * Indicates if this method is <code>oneWay</code>,
36 * respectivly if this method may become executed asynchronously.
38 * @return true means may execute asynchronously .
43 * Indicates if this method is const.
45 * @return true means it is const.
50 * Gives any array of <code>ITypeDescription> of
51 * the [in] parameters.
53 * @return the in parameters
55 ITypeDescription
[] getInSignature();
58 * Gives any array of <code>ITypeDescription> of
59 * the [out] parameters.
61 * @return the out parameters
63 ITypeDescription
[] getOutSignature();
66 * Gives the <code>ITypeDescription</code> of
69 * @return the return type <code>ITypeDescription</code>
71 ITypeDescription
getReturnSignature();
74 * Gives native java method of this method.
76 * @return the java methodd