diff options
author | Michael Stahl <mstahl@redhat.com> | 2012-11-28 13:57:01 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-11-28 14:29:27 +0100 |
commit | 3e6b35fc96de29ba077f8f266ccfd73cb93561b3 (patch) | |
tree | 6f5355075157b50f95ceba4c7ba20be74d1e146f /udkapi/com | |
parent | 61d16504fc1aac2545589a85660c1c89aedbc372 (diff) |
API CHANGE: remove com.sun.star.util.logging module
This module was deprecated and replaced with com.sun.star.logging in
OpenOffice.org 2.3 (i#76119); there is no implementation of the
interfaces. Removed types:
com.sun.star.util.logging.LogLevel
com.sun.star.util.logging.Logger
com.sun.star.util.logging.LoggerRemote
com.sun.star.util.logging.XLogger
com.sun.star.util.logging.XLoggerRemote
WARNING: could not open key "/UCR/com/sun/star/util/logging/XLogger" in
registry "/master/offapi/type_reference/types.rdb"
EXISTENCE: module "/UCR/com/sun/star/util/logging" with published
children exists only in registry 1
Change-Id: Ief1beadf0e32dee03f555599909ac5f31a5034dd
Diffstat (limited to 'udkapi/com')
-rw-r--r-- | udkapi/com/sun/star/util/logging/LogLevel.idl | 50 | ||||
-rw-r--r-- | udkapi/com/sun/star/util/logging/Logger.idl | 47 | ||||
-rw-r--r-- | udkapi/com/sun/star/util/logging/LoggerRemote.idl | 47 | ||||
-rw-r--r-- | udkapi/com/sun/star/util/logging/XLogger.idl | 60 | ||||
-rw-r--r-- | udkapi/com/sun/star/util/logging/XLoggerRemote.idl | 63 |
5 files changed, 0 insertions, 267 deletions
diff --git a/udkapi/com/sun/star/util/logging/LogLevel.idl b/udkapi/com/sun/star/util/logging/LogLevel.idl deleted file mode 100644 index 82afec75af68..000000000000 --- a/udkapi/com/sun/star/util/logging/LogLevel.idl +++ /dev/null @@ -1,50 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * 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 . - */ - -#ifndef __com_sun_star_util_logging_Level_idl__ -#define __com_sun_star_util_logging_Level_idl__ - - -module com { module sun { module star { module util { module logging { - - -/** deprecated API - use <type scope="com::sun::star::logging">LogLevel</type> instead - - @deprecated - @since OOo 1.1.2 -*/ -published constants LogLevel -{ - const long OFF = 0x7fffffff; - const long SEVERE = 1000; - const long WARNING = 900; - const long INFO = 800; - const long CONFIG = 700; - const long FINE = 500; - const long FINER = 400; - const long FINEST = 300; - const long ALL = -0x80000000; -}; - - -}; }; }; }; }; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/udkapi/com/sun/star/util/logging/Logger.idl b/udkapi/com/sun/star/util/logging/Logger.idl deleted file mode 100644 index 5b535b75912a..000000000000 --- a/udkapi/com/sun/star/util/logging/Logger.idl +++ /dev/null @@ -1,47 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * 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 . - */ - -#ifndef __com_sun_star_webtop_Logger_idl__ -#define __com_sun_star_webtop_Logger_idl__ - -#include <com/sun/star/uno/XInterface.idl> -#include <com/sun/star/util/logging/XLogger.idl> -#include <com/sun/star/util/logging/XLoggerRemote.idl> - - -module com { module sun { module star { module util { module logging { - - -/** deprecated API - use <type scope="com::sun::star::logging">LoggerPool</type> instead - - @deprecated - @since OOo 1.1.2 -*/ -published service Logger -{ - /// @deprecated - interface com::sun::star::util::logging::XLogger; -}; - - -}; }; }; }; }; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/udkapi/com/sun/star/util/logging/LoggerRemote.idl b/udkapi/com/sun/star/util/logging/LoggerRemote.idl deleted file mode 100644 index c42d32031153..000000000000 --- a/udkapi/com/sun/star/util/logging/LoggerRemote.idl +++ /dev/null @@ -1,47 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * 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 . - */ - -#ifndef __com_sun_star_webtop_Logger_idl__ -#define __com_sun_star_webtop_Logger_idl__ - -#include <com/sun/star/uno/XInterface.idl> -#include <com/sun/star/util/logging/XLogger.idl> -#include <com/sun/star/util/logging/XLoggerRemote.idl> - - -module com { module sun { module star { module util { module logging { - - - /** deprecated API - use <type scope="com::sun::star::logging">LoggerPool</type> instead - - @deprecated - @since OOo 1.1.2 -*/ -published service LoggerRemote -{ - /// @deprecated - interface com::sun::star::util::logging::XLoggerRemote; -}; - - -}; }; }; }; }; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/udkapi/com/sun/star/util/logging/XLogger.idl b/udkapi/com/sun/star/util/logging/XLogger.idl deleted file mode 100644 index 2eace8c1cf30..000000000000 --- a/udkapi/com/sun/star/util/logging/XLogger.idl +++ /dev/null @@ -1,60 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * 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 . - */ - -#ifndef __com_sun_star_util_logging_XLogger_idl__ -#define __com_sun_star_util_logging_XLogger_idl__ - -#include <com/sun/star/uno/XInterface.idl> - - -module com { module sun { module star { module util { module logging { - - -/** deprecated API - use <type scope="com::sun::star::logging">XLogger</type> instead - - @deprecated - @since OOo 1.1.2 -*/ -published interface XLogger: com::sun::star::uno::XInterface -{ - /// @deprecated - XLogger getLogger( [in] string name ); - - /// @deprecated - long getLevel(); - - /// @deprecated - string getName(); - - /// @deprecated - boolean isLoggable( [in] long level ); - - /// @deprecated - [oneway] void logp( [in] long level, - [in] string sourceClass, - [in] string sourceMethod, - [in] string msg ); -}; - - -}; }; }; }; }; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/udkapi/com/sun/star/util/logging/XLoggerRemote.idl b/udkapi/com/sun/star/util/logging/XLoggerRemote.idl deleted file mode 100644 index c8912803ef92..000000000000 --- a/udkapi/com/sun/star/util/logging/XLoggerRemote.idl +++ /dev/null @@ -1,63 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/* - * 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 . - */ - -#ifndef __com_sun_star_util_logging_XLoggerRemote_idl__ -#define __com_sun_star_util_logging_XLoggerRemote_idl__ - -#include <com/sun/star/uno/XInterface.idl> -#include <com/sun/star/beans/XPropertiesChangeListener.idl> - - -module com { module sun { module star { module util { module logging { - - -/** deprecated API - use <type scope="com::sun::star::logging">XLogger</type> instead - - @deprecated - @since OOo 1.1.2 -*/ -published interface XLoggerRemote: com::sun::star::uno::XInterface -{ - /// @deprecated - long getLevel(); - - /// @deprecated - string getName(); - - /// @deprecated - boolean isLoggable( [in] long level ); - - /// @deprecated - [oneway] void logp( [in] long level, - [in] string sourceClass, - [in] string sourceMethod, - [in] string msg, - [in] string thread ); - - /// @deprecated - [oneway] void addPropertiesChangeListener( - [in] com::sun::star::beans::XPropertiesChangeListener listener); -}; - - -}; }; }; }; }; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |