xref: /aoo42x/main/udkapi/com/sun/star/beans/Property.idl (revision a5f4f399)
1408a4873SAndrew Rist/**************************************************************
2*a5f4f399SMatthias Seidel *
3408a4873SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4408a4873SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5408a4873SAndrew Rist * distributed with this work for additional information
6408a4873SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7408a4873SAndrew Rist * to you under the Apache License, Version 2.0 (the
8408a4873SAndrew Rist * "License"); you may not use this file except in compliance
9408a4873SAndrew Rist * with the License.  You may obtain a copy of the License at
10*a5f4f399SMatthias Seidel *
11408a4873SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*a5f4f399SMatthias Seidel *
13408a4873SAndrew Rist * Unless required by applicable law or agreed to in writing,
14408a4873SAndrew Rist * software distributed under the License is distributed on an
15408a4873SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16408a4873SAndrew Rist * KIND, either express or implied.  See the License for the
17408a4873SAndrew Rist * specific language governing permissions and limitations
18408a4873SAndrew Rist * under the License.
19*a5f4f399SMatthias Seidel *
20408a4873SAndrew Rist *************************************************************/
21408a4873SAndrew Rist
22408a4873SAndrew Rist
23*a5f4f399SMatthias Seidel#ifndef __com_sun_star_beans_Property_idl__
24*a5f4f399SMatthias Seidel#define __com_sun_star_beans_Property_idl__
25*a5f4f399SMatthias Seidel
26*a5f4f399SMatthias Seidel#ifndef __com_sun_star_reflection_XIdlClass_idl__
27*a5f4f399SMatthias Seidel#include <com/sun/star/reflection/XIdlClass.idl>
28*a5f4f399SMatthias Seidel#endif
29*a5f4f399SMatthias Seidel
30*a5f4f399SMatthias Seidel
31*a5f4f399SMatthias Seidel//=============================================================================
32*a5f4f399SMatthias Seidel
33*a5f4f399SMatthias Seidelmodule com {  module sun {  module star {  module beans {
34*a5f4f399SMatthias Seidel
35*a5f4f399SMatthias Seidel//=============================================================================
36*a5f4f399SMatthias Seidel
37cdf0e10cSrcweir/** This structure describes a property.
38*a5f4f399SMatthias Seidel
39cdf0e10cSrcweir	<dl>There are three types of properties:
40cdf0e10cSrcweir		<dt>- bound properties</dt>
41cdf0e10cSrcweir		<dt>- constrained properties</dt>
42cdf0e10cSrcweir		<dt>- free properties</dt>
43cdf0e10cSrcweir	</dl>
44cdf0e10cSrcweir */
45cdf0e10cSrcweirpublished struct Property
46cdf0e10cSrcweir{
47*a5f4f399SMatthias Seidel	//-------------------------------------------------------------------------
48*a5f4f399SMatthias Seidel
49cdf0e10cSrcweir	/** specifies the name of the property.
50*a5f4f399SMatthias Seidel
51*a5f4f399SMatthias Seidel		<p> The name is unique within an <type>XPropertySet</type>.
52*a5f4f399SMatthias Seidel			Upper and lower case are distinguished.</p>
53cdf0e10cSrcweir	 */
54*a5f4f399SMatthias Seidel	string Name;
55*a5f4f399SMatthias Seidel
56*a5f4f399SMatthias Seidel	//-------------------------------------------------------------------------
57*a5f4f399SMatthias Seidel
58cdf0e10cSrcweir	/** contains an implementation-specific handle for the property.
59*a5f4f399SMatthias Seidel
60*a5f4f399SMatthias Seidel		<p> It may be -1 if the implementation has no handle. You can use
61*a5f4f399SMatthias Seidel			this handle to get values from the <type>XFastPropertySet</type>.</p>
62cdf0e10cSrcweir	 */
63*a5f4f399SMatthias Seidel	long Handle;
64*a5f4f399SMatthias Seidel
65*a5f4f399SMatthias Seidel	//-------------------------------------------------------------------------
66*a5f4f399SMatthias Seidel
67*a5f4f399SMatthias Seidel	/** contains an object that identifies the declared type for the property.
68*a5f4f399SMatthias Seidel
69*a5f4f399SMatthias Seidel		<p> If the property has multiple types or the type is not
70*a5f4f399SMatthias Seidel			known, <strong>but not an <atom>any</atom></strong>, then
71*a5f4f399SMatthias Seidel			<const>void</const> must be returned.</p>
72cdf0e10cSrcweir	 */
73*a5f4f399SMatthias Seidel	type Type;
74*a5f4f399SMatthias Seidel
75*a5f4f399SMatthias Seidel	//-------------------------------------------------------------------------
76*a5f4f399SMatthias Seidel
77cdf0e10cSrcweir	/** This field may contain zero or more constants of the
78cdf0e10cSrcweir		<type>PropertyAttribute</type> constants group.
79cdf0e10cSrcweir	 */
80*a5f4f399SMatthias Seidel	short Attributes;
81*a5f4f399SMatthias Seidel
82*a5f4f399SMatthias Seidel	//-------------------------------------------------------------------------
83*a5f4f399SMatthias Seidel
84*a5f4f399SMatthias Seidel};
85*a5f4f399SMatthias Seidel
86*a5f4f399SMatthias Seidel//=============================================================================
87*a5f4f399SMatthias Seidel
88*a5f4f399SMatthias Seidel}; }; }; };
89*a5f4f399SMatthias Seidel
90*a5f4f399SMatthias Seidel#endif
91