1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 module com
{ module sun
{ module star
{ module xml
{ module dom
{
24 module com
{ module sun
{ module star
{ module deployment
{
27 describes unsatisfied dependencies a deployment unit has on its target
30 <p>This exception is intended to be used with an
31 com::sun::star::task::XInteractionHandler.</p>
35 exception DependencyException
: com
::sun
::star
::uno
::Exception
{
37 a sequence of dependencies represented by XML elements.
39 <p>The exact nature of those XML elements is deliberately left open, so
40 that new kinds of dependencies can be defined in the future.
41 OOo 2.0.4 does not define any kinds of dependencies. Each such XML
42 element should have an attribute whose global name consists of the
44 <code>http://openoffice.org/extensions/description/2006</code> and the
45 local part <code>name</code> and whose value is a human-readable
46 (English) description of the dependency. If an instance of OOo does not
47 know more about a specific kind of dependency, it should display the
48 value of that attribute to the user.</p>
50 <p>The sequence must not be empty, and none of the elements may be
53 sequence
< com
::sun
::star
::xml
::dom
::XElement
> UnsatisfiedDependencies
;
58 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */