From 7a8d933585f5165393a9357edc55606c54cb36eb Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Fri, 30 Nov 2012 18:56:44 +0100 Subject: API CHANGE: remove com.sun.star.text.XTextEmbeddedObject This interface was apparently never implemented in OpenOffice.org. EXISTENCE: published key "/UCR/com/sun/star/text/XTextEmbeddedObject" exists only in registry 1 Change-Id: Ib802fa3f035d1842c9ee8018ef15f35a4680fe2b --- qadevOOo/Jar_OOoRunner.mk | 1 - .../tests/java/ifc/text/_XTextEmbeddedObject.java | 51 ---------------------- .../tests/java/mod/_sw/SwXTextEmbeddedObject.java | 1 - 3 files changed, 53 deletions(-) delete mode 100644 qadevOOo/tests/java/ifc/text/_XTextEmbeddedObject.java (limited to 'qadevOOo') diff --git a/qadevOOo/Jar_OOoRunner.mk b/qadevOOo/Jar_OOoRunner.mk index eac17854d02c..c0481c103f55 100644 --- a/qadevOOo/Jar_OOoRunner.mk +++ b/qadevOOo/Jar_OOoRunner.mk @@ -866,7 +866,6 @@ $(eval $(call gb_Jar_add_sourcefiles,OOoRunner,\ qadevOOo/tests/java/ifc/text/_XTextContent \ qadevOOo/tests/java/ifc/text/_XTextCursor \ qadevOOo/tests/java/ifc/text/_XTextDocument \ - qadevOOo/tests/java/ifc/text/_XTextEmbeddedObject \ qadevOOo/tests/java/ifc/text/_XTextEmbeddedObjectsSupplier \ qadevOOo/tests/java/ifc/text/_XTextField \ qadevOOo/tests/java/ifc/text/_XTextFieldsSupplier \ diff --git a/qadevOOo/tests/java/ifc/text/_XTextEmbeddedObject.java b/qadevOOo/tests/java/ifc/text/_XTextEmbeddedObject.java deleted file mode 100644 index 43cf0fcdf56f..000000000000 --- a/qadevOOo/tests/java/ifc/text/_XTextEmbeddedObject.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * 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 ifc.text; - -import lib.MultiMethodTest; - -import com.sun.star.text.XTextEmbeddedObject; - -public class _XTextEmbeddedObject extends MultiMethodTest { - - public XTextEmbeddedObject oObj = null; - public _XTextEmbeddedObject(){ - } - - - public void _getObject(){ - boolean bResult = false; - log.println("Going to get the object"); - //dbg.printInterfaces(oObj); - Object oTEobj = oObj.getObject(); - if (!(oTEobj == null)){ bResult = true; } - tRes.tested("getObject", bResult ); - return; - } - -/* public void _setObject(){ - boolean bResult = false; - log.println("Going to set the object"); - tRes.tested("setObject", bResult ); - return; - } -*/ - } // finish class _XTextEmbeddedObject - - diff --git a/qadevOOo/tests/java/mod/_sw/SwXTextEmbeddedObject.java b/qadevOOo/tests/java/mod/_sw/SwXTextEmbeddedObject.java index 64ef1bfbf3ab..b44ee22d828c 100644 --- a/qadevOOo/tests/java/mod/_sw/SwXTextEmbeddedObject.java +++ b/qadevOOo/tests/java/mod/_sw/SwXTextEmbeddedObject.java @@ -50,7 +50,6 @@ import com.sun.star.util.XCloseable; * @see com.sun.star.lang.XComponent * @see com.sun.star.text.TextEmbeddedObject * @see com.sun.star.text.XTextContent - * @see com.sun.star.text.XTextEmbeddedObject * */ public class SwXTextEmbeddedObject extends TestCase { -- cgit