xref: /AOO41X/main/qadevOOo/tests/java/mod/_lng/DicList.java (revision 1ecadb572e7010ff3b3382ad9bf179dbc6efadbb)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 package mod._lng;
29 
30 import java.io.PrintWriter;
31 
32 import lib.StatusException;
33 import lib.TestCase;
34 import lib.TestEnvironment;
35 import lib.TestParameters;
36 
37 import com.sun.star.lang.Locale;
38 import com.sun.star.lang.XMultiServiceFactory;
39 import com.sun.star.linguistic2.XDictionary;
40 import com.sun.star.linguistic2.XDictionaryList;
41 import com.sun.star.uno.UnoRuntime;
42 import com.sun.star.uno.XInterface;
43 
44 /**
45  * Test for object which is represented by service
46  * <code>com.sun.star.lingu2.DicList</code>. <p>
47  * Object implements the following interfaces :
48  * <ul>
49  *  <li> <code>com::sun::star::linguistic2::XSearchableDictionaryList</code></li>
50  *  <li> <code>com::sun::star::lang::XComponent</code></li>
51  *  <li> <code>com::sun::star::lang::XServiceInfo</code></li>
52  *  <li> <code>com::sun::star::linguistic2::XDictionaryList</code></li>
53  * </ul> <p>
54  *
55  * This object test <b> is NOT </b> designed to be run in several
56  * threads concurently.
57  *
58  * @see com.sun.star.linguistic2.XSearchableDictionaryList
59  * @see com.sun.star.lang.XComponent
60  * @see com.sun.star.lang.XServiceInfo
61  * @see com.sun.star.linguistic2.XDictionaryList
62  * @see ifc.linguistic2._XSearchableDictionaryList
63  * @see ifc.lang._XComponent
64  * @see ifc.lang._XServiceInfo
65  * @see ifc.linguistic2._XDictionaryList
66  */
67 public class DicList extends TestCase {
68 
69     /**
70      * Creating a Testenvironment for the interfaces to be tested.
71      * Creates an instance of the service
72      * <code>com.sun.star.lingu2.DicList</code>. Then two dictionaries
73      * are created (positive and negative) and added to the list, one
74      * entry is added to each of dictionaries and they both are activated.
75      * The distionary list is retruned as a component for testing.
76      */
77     public synchronized TestEnvironment createTestEnvironment( TestParameters Param, PrintWriter log )
78            throws StatusException {
79 
80         XMultiServiceFactory xMSF = (XMultiServiceFactory)Param.getMSF();
81         XInterface oObj = null;
82 
83         try {
84             oObj = (XInterface)xMSF.createInstance("com.sun.star.lingu2.DicList");
85         } catch (com.sun.star.uno.Exception e) {
86             e.printStackTrace(log);
87             throw new StatusException("Unexpected exception", e);
88         }
89 
90         String Iname = util.utils.getImplName(oObj);
91         log.println("Implementation Name: "+Iname);
92         TestEnvironment tEnv = new TestEnvironment(oObj);
93 
94         //creating a user defined dictionary for XSearchableDictionaryList
95         XDictionaryList xDicList = (XDictionaryList) UnoRuntime.queryInterface(
96                                                     XDictionaryList.class, oObj);
97         xDicList.removeDictionary(xDicList.getDictionaryByName("MyDictionary"));
98         XDictionary xDic = xDicList.createDictionary("NegativDic",new Locale(
99             "en","US","WIN"),com.sun.star.linguistic2.DictionaryType.NEGATIVE,"");
100         XDictionary xDic2 = xDicList.createDictionary("PositivDic",new Locale(
101             "en","US","WIN"),com.sun.star.linguistic2.DictionaryType.POSITIVE,"");
102         xDic2.add("Positiv",false,"");
103         xDic.add("Negativ",true,"");
104         xDicList.addDictionary(xDic);
105         xDicList.addDictionary(xDic2);
106         xDic.setActive(true);
107         xDic2.setActive(true);
108 
109         return tEnv;
110     }
111 
112 }    // finish class DicList
113 
114