From 8674c120cf4eb0f180ec40044a060ef1b345e40c Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Fri, 30 Nov 2012 19:40:31 +0100 Subject: API CHANGE: remove com.sun.star.text.XLineNumberingSupplier This interface has been deprecated since OpenOffice.org initial CVS import. EXISTENCE: published key "/UCR/com/sun/star/text/XLineNumberingSupplier" exists only in registry 1 SERVICE: /UCR/com/sun/star/text/GenericTextDocument service1 contains 1 more references as service2 incompatible change: Reference 10 ('XLineNumberingSupplier') in 'r1' is not longer a reference of this service in 'r2' Change-Id: I24ff18d0fe22d3caa893a7d5c766d352b7ca99c3 --- qadevOOo/Jar_OOoRunner.mk | 1 - .../com.sun.star.comp.office.SwXTextDocument.csv | 2 - .../java/ifc/text/_XLineNumberingSupplier.java | 55 ---------------------- 3 files changed, 58 deletions(-) delete mode 100644 qadevOOo/tests/java/ifc/text/_XLineNumberingSupplier.java (limited to 'qadevOOo') diff --git a/qadevOOo/Jar_OOoRunner.mk b/qadevOOo/Jar_OOoRunner.mk index c0481c103f55..9da1f31fc1ce 100644 --- a/qadevOOo/Jar_OOoRunner.mk +++ b/qadevOOo/Jar_OOoRunner.mk @@ -852,7 +852,6 @@ $(eval $(call gb_Jar_add_sourcefiles,OOoRunner,\ qadevOOo/tests/java/ifc/text/_XFootnotesSettingsSupplier \ qadevOOo/tests/java/ifc/text/_XFootnotesSupplier \ qadevOOo/tests/java/ifc/text/_XLineNumberingProperties \ - qadevOOo/tests/java/ifc/text/_XLineNumberingSupplier \ qadevOOo/tests/java/ifc/text/_XMailMergeBroadcaster \ qadevOOo/tests/java/ifc/text/_XPageCursor \ qadevOOo/tests/java/ifc/text/_XPagePrintable \ diff --git a/qadevOOo/objdsc/sw/com.sun.star.comp.office.SwXTextDocument.csv b/qadevOOo/objdsc/sw/com.sun.star.comp.office.SwXTextDocument.csv index dd21e266c688..e7e989da76d7 100644 --- a/qadevOOo/objdsc/sw/com.sun.star.comp.office.SwXTextDocument.csv +++ b/qadevOOo/objdsc/sw/com.sun.star.comp.office.SwXTextDocument.csv @@ -36,8 +36,6 @@ "SwXTextDocument";"com::sun::star::frame::XStorable";"store()" "SwXTextDocument";"com::sun::star::frame::XStorable";"storeAsURL()" "SwXTextDocument";"com::sun::star::frame::XStorable";"storeToURL()" -"SwXTextDocument";"com::sun::star::text::XLineNumberingSupplier#optional";"getLineNumberingRules()" -"SwXTextDocument";"com::sun::star::text::XLineNumberingSupplier#optional";"setLineNumberingRules()" "SwXTextDocument";"com::sun::star::document::XEventsSupplier#optional";"getEvents()" "SwXTextDocument";"com::sun::star::text::XPagePrintable#optional";"getPagePrintSettings()" "SwXTextDocument";"com::sun::star::text::XPagePrintable#optional";"setPagePrintSettings()" diff --git a/qadevOOo/tests/java/ifc/text/_XLineNumberingSupplier.java b/qadevOOo/tests/java/ifc/text/_XLineNumberingSupplier.java deleted file mode 100644 index 309354ef996d..000000000000 --- a/qadevOOo/tests/java/ifc/text/_XLineNumberingSupplier.java +++ /dev/null @@ -1,55 +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.beans.PropertyValue; -import com.sun.star.text.XLineNumberingSupplier; - -/** - * Testing com.sun.star.text.XLineNumberingSupplier - * interface methods : - *

- * Test is NOT multithread compilant.

- * @see com.sun.star.text.XLineNumberingSupplier - */ -public class _XLineNumberingSupplier extends MultiMethodTest { - - public static XLineNumberingSupplier oObj = null; - - public PropertyValue[][] lineNumberingSettings = null; - - /** - * Test calls the method.

- * Has OK status if the method returns not - * null value. - */ - public void _getLineNumberingRules() { - boolean res = false; - lineNumberingSettings = oObj.getLineNumberingRules(); - res = lineNumberingSettings != null ; - tRes.tested("getLineNumberingRules()",res); - } - -} // finish class _XLineNumberingSupplier - -- cgit