/************************************************************** * * 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 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef __com_sun_star_beans_XIntrospection_idl__ #define __com_sun_star_beans_XIntrospection_idl__ #ifndef __com_sun_star_uno_XInterface_idl__ #include #endif #ifndef __com_sun_star_beans_XIntrospectionAccess_idl__ #include #endif //============================================================================= module com { module sun { module star { module beans { //============================================================================= // DocMerge from xml: interface com::sun::star::beans::XIntrospection /** allows the inspection of an object's properties and methods.

Important note:An object can only be inspected completely if it supports the XTypeProvider interface.

For details see method XIntrospection::inspect.

@see XIntrospectionAccess */ published interface XIntrospection: com::sun::star::uno::XInterface { //------------------------------------------------------------------------- // DocMerge from xml: method com::sun::star::beans::XIntrospection::inspect /** inspects the given object.

It identifies all properties supported by the object if they are represented in one of the following ways:

property set
If the object supports an XPropertySet interface, all its properties are adopted.
attributes
All of an object's attributes are considered as properties with same name. If an attribute is read-only, the property also is read-only.
get/set methods
Every method RetType getX() defines a property where "X" stands for the property name and "RetType" for its type. The method must not have any parameters, or there is no property access method and "X" has no property. If there is also a method void setX( [in] RetType ), the property "X" also allows write access; otherwise it is read-only.
Important note:
If an object implements XNameAccess, the items that can be accessed are not considered as properties of the object and so are not included in the property list offered by XIntrospectionAccess::getProperties(). XNameAccess items have to be accessed separately by XIntrospectionAccess::getNameAccess().

In addition, the inspect method identifies all listener access methods in the form add...Listener/ remove...Listener (except methods of interface XPropertySet) where "..." stands for the listener type.

Methods which do not belong to a property nor which represent a listener access nor which are methods of XPropertySet, XNameAccess, XIndexAccess, or XEnumerationAccess, are considered to be normal methods.

@see XIntrospectionAccess */ com::sun::star::beans::XIntrospectionAccess inspect( [in] any aObject ); }; //============================================================================= }; }; }; }; #endif