summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/setup/XSetup.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/setup/XSetup.idl')
-rw-r--r--offapi/com/sun/star/setup/XSetup.idl99
1 files changed, 0 insertions, 99 deletions
diff --git a/offapi/com/sun/star/setup/XSetup.idl b/offapi/com/sun/star/setup/XSetup.idl
deleted file mode 100644
index ca1c3ce81e30..000000000000
--- a/offapi/com/sun/star/setup/XSetup.idl
+++ /dev/null
@@ -1,99 +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_setup_XSetup_idl__
-#define __com_sun_star_setup_XSetup_idl__
-
-#include <com/sun/star/uno/XInterface.idl>
-#include <com/sun/star/setup/OSType.idl>
-#include <com/sun/star/setup/UpdateType.idl>
-#include <com/sun/star/setup/ModuleInfo.idl>
-#include <com/sun/star/setup/InstallEnvironment.idl>
-#include <com/sun/star/setup/InstallResponse.idl>
-#include <com/sun/star/setup/VersionIdentifier.idl>
-#include <com/sun/star/setup/SizeInfo.idl>
-#include <com/sun/star/setup/MirrorEntry.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published interface XSetup: com::sun::star::uno::XInterface
-{
- // DocMerge: empty anyway
- boolean isVersionSupported ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- sequence <short> getAvailableLanguages ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- ModuleInfo getRootModule ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- void setHiddenModule ( [in] VersionIdentifier aVerIdentifier,
- [in] string strModuleID,
- [in] boolean bHidden );
-
- // DocMerge: empty anyway
- string getProductname ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- string getVendorname ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- string getDefaultDestinationPath ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- SizeInfo getStandardSizeValues ( [in] VersionIdentifier aVerIdentifier,
- [in] sequence <short> seqLanguages );
-
- // DocMerge: empty anyway
- string getHelpText ( [in] VersionIdentifier aVerIdentifier,
- [in] string strPagename );
-
- // DocMerge: empty anyway
- string getReadmeText ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- string getLicenseText ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- string getNativeLocation ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- sequence < any > getMirrorList ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- UpdateType isUpdateAvailable ( [in] VersionIdentifier aVerIdentifier,
- [out] VersionIdentifier aNewVerIdentifier );
-
- // DocMerge: empty anyway
- boolean isModuleAvailable ( [in] VersionIdentifier aVerIdentifier,
- [in] string strModuleID );
-
- // DocMerge: empty anyway
- sequence < any > getActionListForInstall ( [in] VersionIdentifier aVerIdentifier,
- [in] VersionIdentifier aOldVerIdentifier,
- [in] InstallEnvironment aEnvironment,
- [out] InstallResponse aResponse );
- };
-
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */