1 /*************************************************************************
2  *
3  *  The Contents of this file are made available subject to the terms of
4  *  the BSD license.
5  *
6  *  Copyright 2000, 2010 Oracle and/or its affiliates.
7  *  All rights reserved.
8  *
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.
20  *
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.
32  *
33  *************************************************************************/
34 
35 import com.sun.star.lang.XSingleComponentFactory;
36 import com.sun.star.uno.UnoRuntime;
37 
38 import java.io.DataInputStream;
39 
40 public class TestInspector {
41 
42     public static void main(String args[]) {
43         com.sun.star.uno.XComponentContext xContext = null;
44         try {
45             // get the remote office component context
46             xContext = com.sun.star.comp.helper.Bootstrap.bootstrap();
47             if( xContext != null )
48                 System.out.println("Connected to a running office ...");
49         }
50         catch( Exception e) {
51             e.printStackTrace(System.out);
52             System.exit(1);
53         }
54 
55         try {
56             com.sun.star.lang.XMultiComponentFactory xMCF = xContext.getServiceManager();
57             // Creating an instance of the instance inspector with arguments
58 
59             XSingleComponentFactory xFactory = Inspector.__getComponentFactory(Inspector._Inspector.class.getName());
60             Object obj= null;
61             if (xFactory != null) {
62                 obj = xFactory.createInstanceWithContext(xContext);
63             }
64             org.openoffice.XInstanceInspector xInstInspector = null;
65             if (obj != null) {
66                 xInstInspector = (org.openoffice.XInstanceInspector)UnoRuntime.queryInterface(org.openoffice.XInstanceInspector.class, obj);
67             }
68 
69             /* A desktop environment contains tasks with one or more
70                frames in which components can be loaded. Desktop is the
71                environment for components which can instanciate within
72                frames. */
73             com.sun.star.frame.XComponentLoader xCmpLoader =  (com.sun.star.frame.XComponentLoader)UnoRuntime.queryInterface( com.sun.star.frame.XComponentLoader.class,
74                     xMCF.createInstanceWithContext("com.sun.star.frame.Desktop", xContext));
75 
76             // Load a new spreadsheet document, which will be automaticly
77             // displayed and is used for inspection
78             com.sun.star.lang.XComponent xComp = xCmpLoader.loadComponentFromURL("private:factory/scalc", "_blank", 0, new com.sun.star.beans.PropertyValue[0] );
79             xInstInspector.inspect(xCmpLoader, "");
80             System.out.println("You can now inspect the new spreadsheet " + "document ...\n");
81         }
82         catch( Exception e ) {
83             System.err.println( e + e.getMessage());
84             e.printStackTrace();
85         }
86 //        System.exit( 0 );
87     }
88 }
89