1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27#ifndef __com_sun_star_linguistic2_ConversionPropertyType_idl__
28#define __com_sun_star_linguistic2_ConversionPropertyType_idl__
29
30//=============================================================================
31
32module com { module sun { module star { module linguistic2 {
33
34//=============================================================================
35/** specifies the property type of an entry in a conversion dictionary.
36
37    @see    com::sun::star::linguistic2::XConversionDictionary
38    @see    com::sun::star::linguistic2::XConversionPropertyType
39
40    @since OOo 2.0
41*/
42constants ConversionPropertyType
43{
44    /** There is no property type defined or available
45    */
46    const short NOT_DEFINED = 0;
47
48    /** Any word that does not fit into any of the other properties
49    */
50    const short OTHER       = 1;
51
52    /** A word or term that is transliterated or used from a non-Chinese language
53    */
54    const short FOREIGN     = 2;
55
56    /** The first name (given name) of a person
57    */
58    const short FIRST_NAME  = 3;
59
60    /** The last name (family name) of a person
61    */
62    const short LAST_NAME   = 4;
63
64    /** The academic or social title of a person
65    */
66    const short TITLE       = 5;
67
68    /** The status of a situation
69    */
70    const short STATUS      = 6;
71
72    /** The name of a location or place
73    */
74    const short PLACE_NAME  = 7;
75
76    /** The description of a business
77    */
78    const short BUSINESS    = 8;
79
80    /** An adjective
81    */
82    const short ADJECTIVE   = 9;
83
84    /** A term that is used to literally describe a circumstance
85    */
86    const short IDIOM       = 10;
87
88    /** An abbreviation
89    */
90    const short ABBREVIATION    = 11;
91
92    /** A numeric word
93    */
94    const short NUMERICAL   = 12;
95
96    /** A noun
97    */
98    const short NOUN        = 13;
99
100    /** A verb
101    */
102    const short VERB        = 14;
103
104    /** The name of a product or a company
105    */
106    const short BRAND_NAME  = 15;
107
108};
109
110//=============================================================================
111
112}; }; }; };
113
114#endif
115