xref: /aoo4110/main/offapi/com/sun/star/i18n/Months.idl (revision b1cdbd2c)
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
23
24#ifndef __com_sun_star_i18n_Months_idl__
25#define __com_sun_star_i18n_Months_idl__
26
27//=============================================================================
28
29module com { module sun { module star { module i18n {
30
31//=============================================================================
32
33/**
34    Constants for month names used in calls to <member>XCalendar::getDisplayName()</member>.
35 */
36
37published constants Months
38{
39    /// January
40	const short JANUARY		= 0;
41    /// February
42	const short FEBURARY	= 1;
43    /// March
44	const short MARCH		= 2;
45    /// April
46	const short APRIL		= 3;
47    /// May
48	const short MAY			= 4;
49    /// June
50	const short JUNE		= 5;
51    /// July
52	const short JULY		= 6;
53    /// August
54	const short AUGUST		= 7;
55    /// September
56	const short SEPTEMBER	= 8;
57    /// October
58	const short OCTOBER		= 9;
59    /// November
60	const short NOVEMBER	= 10;
61    /// December
62	const short DECEMBER	= 11;
63};
64
65//=============================================================================
66}; }; }; };
67
68#endif
69