Branch libreoffice-5-0-4
[LibreOffice.git] / odk / examples / java / Inspector / TestInspector.java
blobd1282ea7bacf79413f3682581bed688c26f6e2f4
1 /*************************************************************************
3 * The Contents of this file are made available subject to the terms of
4 * the BSD license.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of Sun Microsystems, Inc. nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
28 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
29 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
30 * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
31 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 *************************************************************************/
35 import com.sun.star.lang.XSingleComponentFactory;
36 import com.sun.star.uno.UnoRuntime;
38 public class TestInspector {
40 public static void main(String args[]) {
41 com.sun.star.uno.XComponentContext xContext = null;
42 try {
43 // get the remote office component context
44 xContext = com.sun.star.comp.helper.Bootstrap.bootstrap();
45 if( xContext != null )
46 System.out.println("Connected to a running office ...");
48 catch( Exception e) {
49 e.printStackTrace(System.err);
50 System.exit(1);
53 try {
54 com.sun.star.lang.XMultiComponentFactory xMCF = xContext.getServiceManager();
55 // Creating an instance of the instance inspector with arguments
57 XSingleComponentFactory xFactory = Inspector.__getComponentFactory(Inspector._Inspector.class.getName());
58 Object obj= null;
59 if (xFactory != null) {
60 obj = xFactory.createInstanceWithContext(xContext);
62 org.openoffice.XInstanceInspector xInstInspector = null;
63 if (obj != null) {
64 xInstInspector = UnoRuntime.queryInterface(org.openoffice.XInstanceInspector.class, obj);
67 /* A desktop environment contains tasks with one or more
68 frames in which components can be loaded. Desktop is the
69 environment for components which can instanciate within
70 frames. */
71 com.sun.star.frame.XComponentLoader xCmpLoader = UnoRuntime.queryInterface( com.sun.star.frame.XComponentLoader.class,
72 xMCF.createInstanceWithContext("com.sun.star.frame.Desktop", xContext));
74 // Load a new spreadsheet document, which will be automatically
75 // displayed and is used for inspection
76 com.sun.star.lang.XComponent xComp = xCmpLoader.loadComponentFromURL("private:factory/scalc", "_blank", 0, new com.sun.star.beans.PropertyValue[0] );
77 xInstInspector.inspect(xCmpLoader, "");
78 System.out.println("You can now inspect the new spreadsheet " + "document ...\n");
80 catch( Exception e ) {
81 System.err.println( e + e.getMessage());
82 e.printStackTrace();