merge the formfield patch from ooo-build
[ooovba.git] / offapi / com / sun / star / task / InteractionClassification.idl
blob610a98122ab97be2b413dd99ea8aaa759db9ca37
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: InteractionClassification.idl,v $
10 * $Revision: 1.10 $
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 ************************************************************************/
30 #ifndef __com_sun_star_task_InteractionClassification_idl__
31 #define __com_sun_star_task_InteractionClassification_idl__
34 //=============================================================================
36 module com { module sun { module star { module task {
38 //=============================================================================
40 // DocMerge from xml: enum com::sun::star::task::InteractionClassification
41 /** A classification of interaction requests.
43 @see com::sun::star::task::ClassifiedInteractionRequest
44 This is the base of classified interaction requests.
46 published enum InteractionClassification
48 //-------------------------------------------------------------------------
50 // DocMerge from xml: value com::sun::star::task::InteractionClassification::ERROR
51 /** An error.
53 ERROR,
55 //-------------------------------------------------------------------------
57 // DocMerge from xml: value com::sun::star::task::InteractionClassification::WARNING
58 /** A warning, less severe than an error.
60 WARNING,
62 //-------------------------------------------------------------------------
64 // DocMerge from xml: value com::sun::star::task::InteractionClassification::INFO
65 /** Some information for the client/user (which will typically lead to the
66 selection of an
67 <type scope="com::sun::star::task">XInteractionApprove</type>
68 continuation).
70 INFO,
72 //-------------------------------------------------------------------------
74 // DocMerge from xml: value com::sun::star::task::InteractionClassification::QUERY
75 /** A query for the client/user (which will typically lead to the
76 selection of an
77 <type scope="com::sun::star::task">XInteractionApprove</type> or
78 <type scope="com::sun::star::task">XInteractionDisapprove</type>
79 continuation).
81 QUERY
83 };
85 //=============================================================================
87 }; }; }; };
89 #endif