1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: StringResourceWithStorage.idl,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef __com_sun_star_resource_StringResourceWithStorage_idl__
32 #define __com_sun_star_resource_StringResourceWithStorage_idl__
34 #ifndef __com_sun_star_resource_XStringResourceWithStorage_idl__
35 #include
<com
/sun
/star
/resource
/XStringResourceWithStorage.idl
>
39 //=============================================================================
41 module com
{ module sun
{ module star
{ module resource
{
43 //=============================================================================
45 /** specifies a service providing access to a resource string table implementing the
46 <type scope="com::sun::star::resource">XStringResourceWithStorage</type> interface.
48 service StringResourceWithStorage
: com
::sun
::star
::resource
::XStringResourceWithStorage
50 /** is used to initialize the object on its creation.
53 Specifies the storage used to load and store - if
54 the ReadOnly state allows it - the string table data.
57 Specifies if the resource should be read only,
58 see <code>XStringResourceManager::isReadOnly</code>
61 Specifies if the locale first to be used as current locale. Internally
62 the <code>XStringResourceManager::setCurrentLocale</code> method is
63 called with FindClosestMatch=true.
64 see <code>XStringResourceManager::setCurrentLocale</code>
67 Base string for the file names used to store the locale data.
68 The locale data is stored in Java properties files also following
69 the corresponding naming sceme. The files will be named like this:
70 "[BaseName]_[Language]_[Country].properties",
71 e.g. "MyBaseName_en_US.properties"
72 If an empty string is passed for BaseName, "strings" will be used
76 Comment stored first in each properties file followed by a line
77 feed character. The line feed character is added automatically
78 and hasn't to be part of the comment string. The caller is re-
79 sponsible that the passed string is a valid comment in a Java
80 properties file, e.g. "# My strings". The string may be empty.
82 @throws <type scope="com::sun::star::lang">IllegalArgumentException</type>
83 if a null interface is passed as Storage
85 create
( [in] ::com
::sun
::star
::embed
::XStorage Storage
,
86 [in] boolean ReadOnly, [in] com
::sun
::star
::lang
::Locale locale
,
87 [in] string BaseName
, [in] string Comment
)
88 raises
( ::com
::sun
::star
::lang
::IllegalArgumentException
);
91 //=============================================================================