1ef39d40dSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3ef39d40dSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4ef39d40dSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5ef39d40dSAndrew Rist  * distributed with this work for additional information
6ef39d40dSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7ef39d40dSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8ef39d40dSAndrew Rist  * "License"); you may not use this file except in compliance
9ef39d40dSAndrew Rist  * with the License.  You may obtain a copy of the License at
10ef39d40dSAndrew Rist  *
11ef39d40dSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12ef39d40dSAndrew Rist  *
13ef39d40dSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14ef39d40dSAndrew Rist  * software distributed under the License is distributed on an
15ef39d40dSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16ef39d40dSAndrew Rist  * KIND, either express or implied.  See the License for the
17ef39d40dSAndrew Rist  * specific language governing permissions and limitations
18ef39d40dSAndrew Rist  * under the License.
19ef39d40dSAndrew Rist  *
20ef39d40dSAndrew Rist  *************************************************************/
21ef39d40dSAndrew Rist 
22ef39d40dSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir package ifc.form.submission;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir import com.sun.star.form.submission.XSubmission;
27cdf0e10cSrcweir import com.sun.star.form.submission.XSubmissionSupplier;
28cdf0e10cSrcweir import com.sun.star.form.submission.XSubmissionVetoListener;
29cdf0e10cSrcweir import com.sun.star.task.XInteractionHandler;
30cdf0e10cSrcweir import lib.MultiMethodTest;
31cdf0e10cSrcweir 
32cdf0e10cSrcweir public class _XSubmissionSupplier extends MultiMethodTest
33cdf0e10cSrcweir {
34cdf0e10cSrcweir     public XSubmissionSupplier oObj = null;
35cdf0e10cSrcweir     public boolean submitWasCalled = false;
36cdf0e10cSrcweir 
_Submission()37cdf0e10cSrcweir     public void _Submission() {
38cdf0e10cSrcweir         XSubmission stub = new MyXSubmission();
39cdf0e10cSrcweir         oObj.setSubmission (stub);
40cdf0e10cSrcweir         XSubmission xSubmission = oObj.getSubmission ();
41cdf0e10cSrcweir         try {
42cdf0e10cSrcweir             xSubmission.submit ();
43cdf0e10cSrcweir         } catch (com.sun.star.lang.WrappedTargetException e) {
44cdf0e10cSrcweir             log.println("Exception during submit "+e.getMessage ());
45cdf0e10cSrcweir         }
46cdf0e10cSrcweir         catch (com.sun.star.util.VetoException e) {
47cdf0e10cSrcweir             log.println("VetoException during submit "+e.getMessage ());
48cdf0e10cSrcweir         }
49cdf0e10cSrcweir         tRes.tested ("Submission()",submitWasCalled);
50cdf0e10cSrcweir     }
51cdf0e10cSrcweir 
52cdf0e10cSrcweir     private class MyXSubmission implements XSubmission {
53cdf0e10cSrcweir 
submit()54cdf0e10cSrcweir         public void submit () throws com.sun.star.util.VetoException, com.sun.star.lang.WrappedTargetException
55cdf0e10cSrcweir         {
56cdf0e10cSrcweir             submitWasCalled=true;
57cdf0e10cSrcweir             log.println("MyXSubmission: someone called submit :-)");
58cdf0e10cSrcweir         }
59cdf0e10cSrcweir 
submitWithInteraction( XInteractionHandler handler )60cdf0e10cSrcweir         public void submitWithInteraction( XInteractionHandler handler ) throws com.sun.star.util.VetoException, com.sun.star.lang.WrappedTargetException
61cdf0e10cSrcweir         {
62cdf0e10cSrcweir             log.println("MyXSubmission: someone called submitWithInteraction :-)");
63cdf0e10cSrcweir         }
64cdf0e10cSrcweir 
addSubmissionVetoListener( XSubmissionVetoListener listener )65cdf0e10cSrcweir         public void addSubmissionVetoListener( XSubmissionVetoListener listener ) throws com.sun.star.lang.NoSupportException
66cdf0e10cSrcweir         {
67cdf0e10cSrcweir             throw new com.sun.star.lang.NoSupportException();
68cdf0e10cSrcweir         }
69cdf0e10cSrcweir 
removeSubmissionVetoListener( XSubmissionVetoListener listener )70cdf0e10cSrcweir         public void removeSubmissionVetoListener( XSubmissionVetoListener listener ) throws com.sun.star.lang.NoSupportException
71cdf0e10cSrcweir         {
72cdf0e10cSrcweir             throw new com.sun.star.lang.NoSupportException();
73cdf0e10cSrcweir         }
74cdf0e10cSrcweir 
75cdf0e10cSrcweir     }
76cdf0e10cSrcweir 
77cdf0e10cSrcweir }
78