XExtendedTransliteration.idl (d695a2a0) XExtendedTransliteration.idl (90ed883b)
1/**************************************************************
1/**************************************************************
2 *
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
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 *
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
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.
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 *
19 *
20 *************************************************************/
21
22
23
24#ifndef __com_sun_star_i18n_XExtendedTransliteration_idl__
25#define __com_sun_star_i18n_XExtendedTransliteration_idl__
26
27#include <com/sun/star/i18n/XTransliteration.idl>

--- 10 unchanged lines hidden (view full) ---

38 This interface provides character conversions like case folding or
39 Hiragana to Katakana.
40
41 <p> It is derived from
42 <type scope="::com::sun::star::i18n">XTransliteration</type> and provides
43 additional functionality for character to character and
44 string to string without offset parameter transliteration. These
45 should be used for performance reason if their full-blown
20 *************************************************************/
21
22
23
24#ifndef __com_sun_star_i18n_XExtendedTransliteration_idl__
25#define __com_sun_star_i18n_XExtendedTransliteration_idl__
26
27#include <com/sun/star/i18n/XTransliteration.idl>

--- 10 unchanged lines hidden (view full) ---

38 This interface provides character conversions like case folding or
39 Hiragana to Katakana.
40
41 <p> It is derived from
42 <type scope="::com::sun::star::i18n">XTransliteration</type> and provides
43 additional functionality for character to character and
44 string to string without offset parameter transliteration. These
45 should be used for performance reason if their full-blown
46 counterparts aren't neded. </p>
46 counterparts aren't needed. </p>
47
48 @since OpenOffice 1.1.2
49 */
50published interface XExtendedTransliteration : ::com::sun::star::i18n::XTransliteration
51{
52 //------------------------------------------------------------------------
53 /** Transliterate a substring. The functionality is the same as
54 <member scope="::com::sun::star::i18n">XTransliteration::transliterate()</member>
47
48 @since OpenOffice 1.1.2
49 */
50published interface XExtendedTransliteration : ::com::sun::star::i18n::XTransliteration
51{
52 //------------------------------------------------------------------------
53 /** Transliterate a substring. The functionality is the same as
54 <member scope="::com::sun::star::i18n">XTransliteration::transliterate()</member>
55 but omits the offset prameter to improve performance.
55 but omits the offset parameter to improve performance.
56
57 @param aStr
58 The input string.
59
60 @param nStartPos
61 Start position within aStr from where transliteration starts.
62
63 @param nCount

--- 27 unchanged lines hidden (view full) ---

91 The input character.
92 */
93 char transliterateChar2Char( [in] char cChar )
94 raises( MultipleCharsOutputException );
95
96};
97
98//=============================================================================
56
57 @param aStr
58 The input string.
59
60 @param nStartPos
61 Start position within aStr from where transliteration starts.
62
63 @param nCount

--- 27 unchanged lines hidden (view full) ---

91 The input character.
92 */
93 char transliterateChar2Char( [in] char cChar )
94 raises( MultipleCharsOutputException );
95
96};
97
98//=============================================================================
99
99}; }; }; };
100
101#endif
100}; }; }; };
101
102#endif