diff options
author | Frank Schönheit <fs@openoffice.org> | 2001-09-25 13:14:45 +0000 |
---|---|---|
committer | Frank Schönheit <fs@openoffice.org> | 2001-09-25 13:14:45 +0000 |
commit | 2e981d46c71ecf9c2db620766b1bbf5d4b9e9280 (patch) | |
tree | 4e85bbdc7e19802fa268056fa2a2d621919929b6 | |
parent | 6733f5a0a90a74b370e45774e81138f0fa967748 (diff) |
#91062# introduce a result (return value of execute) / allow to throw any exceptions
-rw-r--r-- | offapi/com/sun/star/task/XJob.idl | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/offapi/com/sun/star/task/XJob.idl b/offapi/com/sun/star/task/XJob.idl index 8841a084ee09..a82eec75acad 100644 --- a/offapi/com/sun/star/task/XJob.idl +++ b/offapi/com/sun/star/task/XJob.idl @@ -2,9 +2,9 @@ * * $RCSfile: XJob.idl,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: fs $ $Date: 2001-09-14 09:47:49 $ + * last change: $Author: fs $ $Date: 2001-09-25 14:14:45 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -90,12 +90,14 @@ interface XJob : com::sun::star::uno::XInterface are arguments for executing the job. Their semantics is completely implementation dependent. Usually, a concrete implementation of a job specifies in its service descriptions which parameters are allowed (or expected). + @return + the result of the job. The concrete semantics is service-dependent. */ - void execute( + any execute( [in] com::sun::star::uno::XInterface xContext, [in] sequence< com::sun::star::beans::NamedValue > aArgs ) - raises( com::sun::star::lang::IllegalArgumentException ); + raises( com::sun::star::lang::IllegalArgumentException, com::sun::star::uno::Exception ); }; //............................................................................. @@ -107,6 +109,9 @@ interface XJob : com::sun::star::uno::XInterface /************************************************************************* * history: * $Log: not supported by cvs2svn $ + * Revision 1.1 2001/09/14 09:47:49 fs + * initial checkin - specification for a simple executable job + * * * Revision 1.0 13.09.01 17:03:45 fs ************************************************************************/ |