/* * 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 com.sun.star.report; public interface ReportEngineMetaData { /** * Checks, whether a certain output type is available. * Feed the mime-type of the output type in and you'll get * a true or false back. * * @param mimeType * @return true, if the output type is supported; false otherwise. */ boolean isOutputSupported(String mimeType); /** * Lists all supported output parameters for the given mime-type. * This listing can be used to build a generic user interface for * configuring a certain output. * * @param mimeType * @return */ String[] getOutputParameters(String mimeType); Class getParameterType(String parameter); boolean isMandatory(String parameter); boolean isEnumeration(String parameter); Object[] getEnumerationValues(String parameter); } e='distro/cib/libreoffice-6-2'>distro/cib/libreoffice-6-2 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/svtools/workben
AgeCommit message (Expand)Author
2012-04-05UniString::CreateFromInt32 -> rtl::OUString::valueOfCaolán McNamara
2012-04-05drop methods only used in svdemCaolán McNamara
2012-04-02Convert tools/table.hxx usage to std::set in Calendar class in svtools moduleNoel Grandin
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann
2012-01-06catch exception by constant referenceTakeshi Abe
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz