/* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ package test; import com.sun.star.uno.UnoRuntime; import com.sun.star.connection.XConnector; import com.sun.star.connection.XConnection; import com.sun.star.bridge.XInstanceProvider; class MyInstanceProvider implements XInstanceProvider { public Object getInstance( String sName ) { System.out.println( "getInstance called" ); return new MyTestFactory(); } } class MyTestFactory implements XTestFactory { public XCallMe createCallMe( ) throws com.sun.star.uno.RuntimeException { return new MyCallMe(); } public test.XInterfaceTest createInterfaceTest( ) throws com.sun.star.uno.RuntimeException { return null; } } class MyCallMe implements XCallMe { public String getsAttribute() throws com.sun.star.uno.RuntimeException { return ""; } // Methods public void call( /*IN*/String s, /*IN*/int nToDo ) throws com.sun.star.uno.RuntimeException { } public void callOneway( /*IN*/String s, /*IN*/int nToDo ) throws com.sun.star.uno.RuntimeException { System.out.println( "entering callOneway" ); try { Thread.sleep( 4000 ); } catch ( java.lang.Exception e ) { System.out.println( e ); } System.out.println( "leaving callOneway" ); } public void callAgain( /*IN*/XCallMe callAgain, /*IN*/int nToCall ) throws com.sun.star.uno.RuntimeException { } public test.TestTypes transport( /*IN*/test.TestTypes types ) throws com.sun.star.uno.RuntimeException { return new test.TestTypes(); } } public class testclient { static void main( String[] args ) { try { com.sun.star.comp.servicemanager.ServiceManager smgr = new com.sun.star.comp.servicemanager.ServiceManager(); smgr.insert( "com.sun.star.comp.connections.Connector" ); Object x = smgr.createInstance("com.sun.star.connection.Connector"); if( x == null ) { System.out.println( "couldn't create connector\n" ); return; } XConnector xConnector = UnoRuntime.queryInterface( XConnector.class , x ); XConnection xConnection = xConnector.connect(args[0]); if( null != xConnection ) { System.out.println( "after connect" ); UnoRuntime.getBridgeByName( "java", null, "remote", null, new Object[]{"iiop", xConnection, new MyInstanceProvider()}); System.out.println( "after building bridge" ); Thread.sleep( 100000 ); } } catch( com.sun.star.uno.Exception e) { System.out.println( "Exception thrown" ); } catch( java.lang.Exception e) { System.out.println( "java.lang.Exception thrown" ); } System.out.println( "exiting" ); } } lue='distro/collabora/cp-6.0'>distro/collabora/cp-6.0 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sd/inc/undoanim.hxx
AgeCommit message (Expand)Author
2014-03-27Second batch of adding SAL_OVERRIDE to overriding function declarationsStephan Bergmann
2013-10-23fixincludeguards.sh: sdThomas Arnhold
2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák
2013-02-27coverity#704165: fix memory leakMarkus Mohrhard
2012-11-28re-base on ALv2 code. Includes:Michael Meeks
2012-05-14convert GetComment family to rtl::OUStringCaolán McNamara
2010-10-28add modelines to .hxx files as wellCaolán McNamara
2010-02-12changefileheader2: #i109125#: change source file copyright notice from Sun Mi...Jens-Heiner Rechtien
2008-04-10INTEGRATION: CWS changefileheader (1.6.184); FILE MERGEDRüdiger Timm
2007-07-06INTEGRATION: CWS pathfinder01 (1.5.126); FILE MERGEDRüdiger Timm
2006-12-12