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 com.sun.star.comp.loader;
29 
30 import com.sun.star.lang.XSingleServiceFactory;
31 import com.sun.star.lang.XMultiServiceFactory;
32 import com.sun.star.lang.XServiceInfo;
33 
34 
35 public class JavaLoaderFactory implements XSingleServiceFactory, XServiceInfo {
36 
37     private static String[] supportedServices = {
38         "com.sun.star.loader.Java",
39         "com.sun.star.loader.Java2"
40     };
41 
42 	private static final boolean DEBUG = false;
43 
44 	private static final void DEBUG(String dbg) {
45 	    if (DEBUG)
46 	        System.err.println(" >>> JavaLoaderFactory - " + dbg);
47 	}
48 
49 	protected XMultiServiceFactory multiServiceFactory = null;
50 
51 	/** default constructor
52 	 */
53 //  	public JavaLoaderFactory() {}
54 
55 	public JavaLoaderFactory(XMultiServiceFactory factory) {
56 	    multiServiceFactory = factory;
57 	}
58 
59     public java.lang.Object createInstance()
60             throws com.sun.star.uno.Exception,
61                    com.sun.star.uno.RuntimeException
62     {
63         return new JavaLoader(multiServiceFactory);
64     }
65 
66     public java.lang.Object createInstanceWithArguments( java.lang.Object[] args )
67             throws com.sun.star.uno.Exception,
68                    com.sun.star.uno.RuntimeException
69     {
70         JavaLoader loader = new JavaLoader();
71         loader.initialize(args);
72 
73         return loader;
74     }
75 
76     /** implements the XServiceInfo interface
77 	 */
78 	public String getImplementationName()
79 	        throws com.sun.star.uno.RuntimeException
80     {
81 		return JavaLoader.class.getName();
82 	}
83 
84     /** implements the XServiceInfo interface
85 	 */
86 	public boolean supportsService(String serviceName)
87 	        throws com.sun.star.uno.RuntimeException
88 	{
89 		for ( int i = 0; i < supportedServices.length; i++ ) {
90 			if ( supportedServices[i].equals(serviceName) )
91 				return true;
92 		}
93 		return false;
94 	}
95 
96     /** implements the XServiceInfo interface
97 	 */
98 	public String[] getSupportedServiceNames()
99 	        throws com.sun.star.uno.RuntimeException
100 	{
101 		return supportedServices;
102 	}
103 }
104 
105