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