merge the formfield patch from ooo-build
[ooovba.git] / avmedia / source / java / MediaUno.java
blob89413ce9302ba9c98f8b8667ea7a0014876ff11e
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: MediaUno.java,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // UNO
32 import com.sun.star.uno.UnoRuntime;
33 import com.sun.star.uno.XComponentContext;
34 import com.sun.star.uno.AnyConverter;
35 import com.sun.star.uno.IQueryInterface;
36 import com.sun.star.lang.XInitialization;
38 public class MediaUno
40 private static final String s_implName = "com.sun.star.comp.media.Manager_Java";
41 private static final String s_serviceName = "com.sun.star.media.Manager_Java";
43 // -------------------------------------------------------------------------
45 public MediaUno()
49 // -------------------------------------------------------------------------
51 public static com.sun.star.lang.XSingleServiceFactory __getServiceFactory(
52 String implName,
53 com.sun.star.lang.XMultiServiceFactory multiFactory,
54 com.sun.star.registry.XRegistryKey regKey )
56 if (implName.equals( s_implName ))
58 try
60 return com.sun.star.comp.loader.FactoryHelper.getServiceFactory(
61 Class.forName( "Manager" ), s_serviceName, multiFactory, regKey );
63 catch( java.lang.ClassNotFoundException exception )
68 return null;
71 // -------------------------------------------------------------------------
73 public static boolean __writeRegistryServiceInfo(
74 com.sun.star.registry.XRegistryKey regKey )
76 return com.sun.star.comp.loader.FactoryHelper.writeRegistryServiceInfo(
77 s_implName, s_serviceName, regKey );