1*1c6bcb13SSteve Yin/*************************************************************************
2*1c6bcb13SSteve Yin *
3*1c6bcb13SSteve Yin * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*1c6bcb13SSteve Yin *
5*1c6bcb13SSteve Yin * Copyright IBM Corporation 2010.
6*1c6bcb13SSteve Yin * Copyright 2000, 2010 Oracle and/or its affiliates.
7*1c6bcb13SSteve Yin *
8*1c6bcb13SSteve Yin * OpenOffice.org - a multi-platform office productivity suite
9*1c6bcb13SSteve Yin *
10*1c6bcb13SSteve Yin * This file is part of OpenOffice.org.
11*1c6bcb13SSteve Yin *
12*1c6bcb13SSteve Yin * OpenOffice.org is free software: you can redistribute it and/or modify
13*1c6bcb13SSteve Yin * it under the terms of the GNU Lesser General Public License version 3
14*1c6bcb13SSteve Yin * only, as published by the Free Software Foundation.
15*1c6bcb13SSteve Yin *
16*1c6bcb13SSteve Yin * OpenOffice.org is distributed in the hope that it will be useful,
17*1c6bcb13SSteve Yin * but WITHOUT ANY WARRANTY; without even the implied warranty of
18*1c6bcb13SSteve Yin * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19*1c6bcb13SSteve Yin * GNU Lesser General Public License version 3 for more details
20*1c6bcb13SSteve Yin * (a copy is included in the LICENSE file that accompanied this code).
21*1c6bcb13SSteve Yin *
22*1c6bcb13SSteve Yin * You should have received a copy of the GNU Lesser General Public License
23*1c6bcb13SSteve Yin * version 3 along with OpenOffice.org.  If not, see
24*1c6bcb13SSteve Yin * <http://www.openoffice.org/license.html>
25*1c6bcb13SSteve Yin * for a copy of the LGPLv3 License.
26*1c6bcb13SSteve Yin *
27*1c6bcb13SSteve Yin ************************************************************************/
28*1c6bcb13SSteve Yin
29*1c6bcb13SSteve Yin#ifndef __com_sun_star_accessibility_XAccessibleGetAccFlowTo_idl_
30*1c6bcb13SSteve Yin#define __com_sun_star_accessibility_XAccessibleGetAccFlowTo_idl_
31*1c6bcb13SSteve Yin
32*1c6bcb13SSteve Yin#ifndef __com_sun_star_uno_XInterface_idl__
33*1c6bcb13SSteve Yin#include <com/sun/star/uno/XInterface.idl>
34*1c6bcb13SSteve Yin#endif
35*1c6bcb13SSteve Yin
36*1c6bcb13SSteve Yinmodule com { module sun { module star { module accessibility {
37*1c6bcb13SSteve Yin
38*1c6bcb13SSteve Yin// !!!
39*1c6bcb13SSteve Yin// MT: When integrating this, interface and method names should be renamed somehow. Of course, file name also need to change then...
40*1c6bcb13SSteve Yin// !!!
41*1c6bcb13SSteve Yininterface XAccessibleGetAccFlowTo : ::com::sun::star::uno::XInterface
42*1c6bcb13SSteve Yin{
43*1c6bcb13SSteve Yin	sequence<any> get_AccFlowTo([in] any aXShape, [in] long nType);
44*1c6bcb13SSteve Yin};
45*1c6bcb13SSteve Yin
46*1c6bcb13SSteve Yin}; }; }; };
47*1c6bcb13SSteve Yin
48*1c6bcb13SSteve Yin#endif
49