summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorDavid Ostrovsky <david@ostrovsky.org>2013-11-26 15:05:51 +0100
committerMichael Stahl <mstahl@redhat.com>2013-12-05 05:31:43 -0600
commit130833f80e89774269108cf30b2d1155a00354ce (patch)
tree245267c3cd6664f6afebb7abb15906a4f1837b76 /offapi
parent059cc67245a4f0a62589a0c877aea85e8859c435 (diff)
fdo#39956 Delete JAB
JAB has been discontinued in favor of the native IA2 bridge. Change-Id: I88461f73c620507d3e97b077ea2abdd2229322e1 Reviewed-on: https://gerrit.libreoffice.org/6819 Reviewed-by: David Ostrovsky <David.Ostrovsky@gmx.de> Tested-by: David Ostrovsky <David.Ostrovsky@gmx.de> Reviewed-by: Michael Meeks <michael.meeks@collabora.com> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'offapi')
-rwxr-xr-xoffapi/UnoApi_offapi.mk3
-rw-r--r--offapi/com/sun/star/accessibility/AccessBridge.idl47
2 files changed, 0 insertions, 50 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk
index 41e8ea6d834d..ccee74136520 100755
--- a/offapi/UnoApi_offapi.mk
+++ b/offapi/UnoApi_offapi.mk
@@ -26,9 +26,6 @@ $(eval $(call gb_UnoApi_use_api,offapi,\
))
-$(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,com/sun/star/accessibility,\
- AccessBridge \
-))
$(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,com/sun/star/animations,\
AnimateColor \
AnimateMotion \
diff --git a/offapi/com/sun/star/accessibility/AccessBridge.idl b/offapi/com/sun/star/accessibility/AccessBridge.idl
deleted file mode 100644
index f9205c03f55a..000000000000
--- a/offapi/com/sun/star/accessibility/AccessBridge.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_accessibility_AccessBridge_idl__
-#define __com_sun_star_accessibility_AccessBridge_idl__
-
-#include <com/sun/star/lang/XComponent.idl>
-#include <com/sun/star/awt/XExtendedToolkit.idl>
-
-
-module com { module sun { module star { module accessibility {
-
-/** The UNO <-> Java Access Bridge allows any native frame window
- to become accessible by implementing the XAccessible interface.
-
- <p>Therefor the UNO <-> Java Access Bridge utilizes the Java <-> Windows
- and Java <-> GNOME access bridge by registering the native frames as
- Java windows.</p>
-
- @since OOo 1.1.2
-*/
-
-service AccessBridge : com::sun::star::lang::XComponent
-{
- createWithToolkit([in] com::sun::star::awt::XExtendedToolkit toolkit);
-};
-
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */