merge the formfield patch from ooo-build
[ooovba.git] / offapi / com / sun / star / logging / FileHandler.idl
blob702f703e703825a96c28e1f81bc78a5d056ca451
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: FileHandler.idl,v $
10 * $Revision: 1.3 $
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_logging_FileHandler_idl__
32 #define __com_sun_star_logging_FileHandler_idl__
34 #ifndef __com_sun_star_lang_IllegalArgumentException_idl__
35 #include <com/sun/star/lang/IllegalArgumentException.idl>
36 #endif
37 #ifndef __com_sun_star_beans_NamedValue_idl__
38 #include <com/sun/star/beans/NamedValue.idl>
39 #endif
41 //=============================================================================
43 module com { module sun { module star { module logging {
45 interface XLogHandler;
47 //=============================================================================
49 /** specifies a component implementing a log handler whose output
50 channel is a file.
52 <p>The handler will use the <code>Encoding</code> attribute of <type>XLogHandler</type>
53 to determine how to encode strings before actually writing them to the output
54 file.</p>
56 @see XLogHandler::Encoding
58 @since OOo 2.3
60 service FileHandler : XLogHandler
62 /** creates a log handler whose output is directed to a file given by URL.
64 @param FileURL
65 the URL of the file to be created. This URL is resolved using the
66 <type scope="::com::sun::star::util">PathSubstitution</type> service. That
67 is, it is allowed to include placeholders such as <code>$(userurl)</code>.
69 create( [in] string FileURL );
71 /** creates an instance of the log handler, using generic settings
73 @param Settings
74 contains the initial settings for the log handler
76 <p>The following settings are recognized and supported:
77 <ul><li><code>Encoding</code> - denotes the initial value of the <member>XLogHandler::Encoding</member></li>
78 <li><code>Formatter</code> - denotes the initial value of the <member>XLogHandler::Formatter</member></li>
79 <li><code>Level</code> - denotes the initial value of the <member>XLogHandler::Level</member></li>
80 </ul></p>
82 <p>Additionally, a setting name <code>FileURL</code> is recognized. It must be of type
83 string, and denotes the file URL to which the handler's output should be directed.</p>
85 <p>At least the URL argument must be present in the settings.</p>
87 @throws ::com::sun::star::lang::IllegalArgumentException
88 if <arg>Settings</args> contains settings whose value is of the wrong type.
90 createWithSettings( [in] sequence< ::com::sun::star::beans::NamedValue > Settings )
91 raises ( ::com::sun::star::lang::IllegalArgumentException );
94 //=============================================================================
96 }; }; }; };
98 //=============================================================================
100 #endif