1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22#ifndef com_sun_star_chart2_LogicTargetModel_idl
23#define com_sun_star_chart2_LogicTargetModel_idl
24
25#include <com/sun/star/beans/XPropertySet.idl>
26
27//=============================================================================
28
29module com {  module sun {  module star {  module chart2 {
30
31//=============================================================================
32/**
33  <p>The properties of this service correspond to the similar named attributes
34  and subelements of the XML element chart2:increment in the chart2 file format.</p>
35*/
36service LogicTargetModel
37{
38	/** identifies an instance of this service within one chartdocument.
39	*/
40	[ readonly, property ] string ID;
41
42	/** identifies an instance of the service com::sun::star::chart2::LegendModel within one chartdocument.
43	* that instance is used to automatically calculate missing properties
44	*/
45	[ property ] string LegendID;
46
47	/** not BOUND nor CONSTRAINED in terms of Listener notifications,
48	*  each element in the sequence must implement the service com::sun::star::chart2::CoordinateSystem
49	*/
50	[ property ] sequence< ::com::sun::star::beans::XPropertySet > CoordinateSystems;
51
52	/** MAYBEVOID, not BOUND nor CONSTRAINED in terms of Listener notifications,
53	*  each element in the sequence must implement the service com::sun::star::chart2::LogicTargetModel
54	*/
55	[ property ] sequence< ::com::sun::star::beans::XPropertySet > LogicTargetModels;
56};
57
58//=============================================================================
59
60}; }; }; };
61
62#endif
63