diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-11-30 18:56:44 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-11-30 18:56:44 +0100 |
commit | 7a8d933585f5165393a9357edc55606c54cb36eb (patch) | |
tree | 1923b47df1088327576156dd3de8129da2df2eb1 /qadevOOo/tests/java/ifc/text | |
parent | 3e0d7e60bc00b36cca0755a6b02879e0a1cc2484 (diff) |
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
Diffstat (limited to 'qadevOOo/tests/java/ifc/text')
-rw-r--r-- | qadevOOo/tests/java/ifc/text/_XTextEmbeddedObject.java | 51 |
1 files changed, 0 insertions, 51 deletions
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 - - |