2011-12-29 06:12:09 -06:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-12 09:10:53 -05:00
|
|
|
/*
|
|
|
|
* 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/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2000-11-06 05:26:02 -06:00
|
|
|
#ifndef __com_sun_star_reflection_CoreReflection_idl__
|
|
|
|
#define __com_sun_star_reflection_CoreReflection_idl__
|
|
|
|
|
2000-11-23 04:27:48 -06:00
|
|
|
#include <com/sun/star/reflection/XIdlReflection.idl>
|
2002-06-14 07:33:02 -05:00
|
|
|
#include <com/sun/star/lang/XComponent.idl>
|
|
|
|
|
2000-11-06 05:26:02 -06:00
|
|
|
|
|
|
|
|
|
|
|
module com { module sun { module star { module reflection {
|
|
|
|
|
|
|
|
|
2002-03-08 10:19:13 -06:00
|
|
|
/** This service is the implementation of the reflection API.
|
|
|
|
You can obtain information about types, modify values of reflected types
|
|
|
|
and call on objects.
|
2012-09-04 09:12:17 -05:00
|
|
|
|
|
|
|
@deprecated Rather use the 'theCoreReflection' singleton.
|
2000-11-23 04:27:48 -06:00
|
|
|
*/
|
2004-06-03 10:04:58 -05:00
|
|
|
published service CoreReflection
|
2000-11-06 05:26:02 -06:00
|
|
|
{
|
2002-01-23 01:52:21 -06:00
|
|
|
/** Interface to reflect types.
|
|
|
|
*/
|
2000-11-23 04:27:48 -06:00
|
|
|
interface com::sun::star::reflection::XIdlReflection;
|
2002-06-14 07:33:02 -05:00
|
|
|
|
|
|
|
/** CoreReflection has to be disposed if possible
|
|
|
|
*/
|
|
|
|
[optional] interface com::sun::star::lang::XComponent;
|
|
|
|
};
|
|
|
|
|
2000-11-06 05:26:02 -06:00
|
|
|
}; }; }; };
|
|
|
|
|
|
|
|
#endif
|
2011-12-29 06:12:09 -06:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|