update dev300-m58
[ooovba.git] / offapi / com / sun / star / inspection / ObjectInspectorModel.idl
blob62d4150cba2a0264b882b721cabe903e19e9d6da
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: ObjectInspectorModel.idl,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef __com_sun_star_inspection_ObjectInspectorModel_idl__
32 #define __com_sun_star_inspection_ObjectInspectorModel_idl__
34 #ifndef __com_sun_star_inspection_XObjectInspectorModel_idl__
35 #include <com/sun/star/inspection/XObjectInspectorModel.idl>
36 #endif
38 #ifndef __com_sun_star_lang_IllegalArgumentException_idl__
39 #include <com/sun/star/lang/IllegalArgumentException.idl>
40 #endif
42 //=============================================================================
43 module com { module sun { module star { module inspection {
45 //-----------------------------------------------------------------------------
46 /** describes a default implementation of an ObjectInspectorModel
48 <p>This service simplifies usage of an <type>ObjectInspector</type>.</p>
50 <p>The <type>XObjectInspectorModel</type> implemented by this service will not provide any property
51 categories, nor apply any particular order to the properties provided by its handler(s).</p>
53 @see ObjectInspector
54 @see XObjectInspectorModel
55 @see XObjectInspectorModel::describeCategories
56 @see XObjectInspectorModel::getPropertyOrderIndex
58 @since OOo 2.0.3
60 service ObjectInspectorModel : XObjectInspectorModel
62 /** creates a default ObjectInspectorModel, whose one and only handler factory
63 creates a <type>GenericPropertyHandler</type>.
65 createDefault();
67 /** creates a default ObjectInspectorModel, using an externally provided sequence of property handler
68 factories.
70 @param handlerFactories
71 a sequence of handler factories, as to be provided in the XObjectInspectorModel::HandlerFactories
72 method.
73 @throws ::com::sun::star::lang::IllegalArgumentException
74 if the given sequence is empty.
76 @see XObjectInspectorModel::HandlerFactories
78 createWithHandlerFactories( [in] sequence< any > handlerFactories )
79 raises ( ::com::sun::star::lang::IllegalArgumentException );
81 /** creates a default ObjectInspectorModel, using an externally provided sequence of property handler
82 factories, and describing an ObjectInspector which has a help section.
84 @param handlerFactories
85 a sequence of handler factories, as to be provided in the XObjectInspectorModel::HandlerFactories
86 method.
88 @param minHelpTextLines
89 denotes the minimum number of lines of text to be reserved for the help
90 section.
92 @param maxHelpTextLines
93 denotes the maximum number of lines of text to be reserved for the help
94 section.
96 @throws ::com::sun::star::lang::IllegalArgumentException
97 if <arg>handlerFactories</arg> is empty.
99 @throws ::com::sun::star::lang::IllegalArgumentException
100 if <arg>minHelpTextLines</arg> or <arg>maxHelpTextLines</arg> are negative,
101 or if <arg>minHelpTextLines</arg> is greater than <arg>maxHelpTextLines</arg>.
103 @see XObjectInspectorModel::HandlerFactories
104 @see XObjectInspectorModel::HasHelpSection
105 @see XObjectInspectorModel::MinHelpTextLines
106 @see XObjectInspectorModel::MaxHelpTextLines
108 @since OOo 2.2
110 createWithHandlerFactoriesAndHelpSection(
111 [in] sequence< any > handlerFactories,
112 [in] long minHelpTextLines,
113 [in] long maxHelpTextLines
115 raises ( ::com::sun::star::lang::IllegalArgumentException );
118 //=============================================================================
120 }; }; }; };
122 #endif