Update ooo320-m1
[ooovba.git] / ure / source / uretest / JavaMain.java
blob26d723dad4725c295be602dccc5b6ac4403287a0
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: JavaMain.java,v $
10 * $Revision: 1.4 $
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 package test.java.javamain;
33 import com.sun.star.comp.loader.FactoryHelper;
34 import com.sun.star.lang.XMain;
35 import com.sun.star.lang.XMultiServiceFactory;
36 import com.sun.star.lang.XSingleServiceFactory;
37 import com.sun.star.registry.XRegistryKey;
38 import com.sun.star.uno.XComponentContext;
39 import test.java.tester.Tester;
41 public final class JavaMain implements XMain {
42 public JavaMain(XComponentContext context) {
43 this.context = context;
46 public int run(String[] arguments) {
47 Tester.test(context);
48 return 0;
51 public static boolean __writeRegistryServiceInfo(XRegistryKey key) {
52 return
53 FactoryHelper.writeRegistryServiceInfo(
54 IMPLEMENTATION_NAME, SERVICE_NAME, key);
57 public static XSingleServiceFactory __getServiceFactory(
58 String name, XMultiServiceFactory factory, XRegistryKey key)
60 if (name.equals(IMPLEMENTATION_NAME)) {
61 return FactoryHelper.getServiceFactory(
62 JavaMain.class, SERVICE_NAME, factory, key);
63 } else {
64 return null;
68 private static final String IMPLEMENTATION_NAME
69 = "test.java.javamain.Component";
70 private static final String SERVICE_NAME = "test.dummy.JavaMain";
72 private final XComponentContext context;