2002-10-03 07:11:20 -05:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 18:06:42 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2002-10-03 07:11:20 -05:00
|
|
|
*
|
2010-02-12 08:01:35 -06:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2002-10-03 07:11:20 -05:00
|
|
|
*
|
2008-04-10 18:06:42 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2002-10-03 07:11:20 -05:00
|
|
|
*
|
2008-04-10 18:06:42 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2002-10-03 07:11:20 -05:00
|
|
|
*
|
2008-04-10 18:06:42 -05:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2002-10-03 07:11:20 -05:00
|
|
|
*
|
2008-04-10 18:06:42 -05:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2002-10-03 07:11:20 -05:00
|
|
|
*
|
2008-04-10 18:06:42 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2002-10-03 07:11:20 -05:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef __com_sun_star_i18n_Boundary_idl__
|
|
|
|
#define __com_sun_star_i18n_Boundary_idl__
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
module com { module sun { module star { module i18n {
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
2005-03-23 01:57:09 -06:00
|
|
|
/** contains start and end position of a word.
|
|
|
|
|
|
|
|
<p> It is used in word break iterator and text conversion.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
@see XBreakIterator
|
|
|
|
@see XTextConversion
|
2002-10-03 07:11:20 -05:00
|
|
|
*/
|
2004-06-03 14:27:26 -05:00
|
|
|
published struct Boundary
|
2002-10-03 07:11:20 -05:00
|
|
|
{
|
|
|
|
/// Start position of a word, <b>inclusive</b>
|
|
|
|
long startPos ;
|
|
|
|
|
|
|
|
/// End position of a word, <b>exclusive</b>
|
|
|
|
long endPos;
|
|
|
|
};
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
}; }; }; };
|
2008-01-28 08:56:32 -06:00
|
|
|
|
2002-10-03 07:11:20 -05:00
|
|
|
#endif
|