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 .
21 module com
{ module sun
{ module star
{ module ucb
{
23 /** A TDCP Root Folder is the root container for all other TDCP contents.
25 <p>There is at most one instance of a TDCP Root at a time. All other TDCP
26 contents are children of this folder. The TDCP Root Folder can contain
27 only TDCP Documents. It has the fixed URL "vnd.sun.star.tdoc:/".
29 @see TransientDocumentsContentProvider
30 @see TransientDocumentsDocumentContent
31 @see TransientDocumentsFolderContent
32 @see TransientDocumentsStreamContent
36 service TransientDocumentsRootContent
38 /** This interface is implemented according to the specification of
41 interface com
::sun
::star
::lang
::XComponent
;
43 /** This interface is implemented according to the specification of
46 interface com
::sun
::star
::ucb
::XContent
;
48 /** This interface is implemented according to the specification of
53 <b>Supported Commands</b>
72 <b>Supported Properties</b>
75 string ContentType ( read-only, always "application/vnd.sun.star.tdoc-root" )
78 boolean IsDocument ( read-only, always false )
81 boolean IsFolder ( read-only, always true )
84 string Title ( read-only, always an empty string )
90 interface com
::sun
::star
::ucb
::XCommandProcessor
;
92 /** is an enhanced version of XCommandProcessor that has an
93 additional method for releasing command identifiers obtained via
94 XCommandProcessor::createCommandIdentifier() to avoid
95 resource leaks. For a detailed description of the problem refer to
96 XCommandProcessor2::releaseCommandIdentifier().
98 <p>Where many existing Content implementations do not
99 (yet), every new implementation should support this interface.
101 [optional] interface com
::sun
::star
::ucb
::XCommandProcessor2
;
103 /** This interface is implemented according to the specification of
106 interface com
::sun
::star
::beans
::XPropertiesChangeNotifier
;
108 /** This interface is implemented according to the specification of
111 interface com
::sun
::star
::beans
::XPropertyContainer
;
113 /** This interface is implemented according to the specification of
116 interface com
::sun
::star
::beans
::XPropertySetInfoChangeNotifier
;
118 /** This interface is implemented according to the specification of
121 interface com
::sun
::star
::ucb
::XCommandInfoChangeNotifier
;
123 /** This interface is implemented according to the specification of
126 interface com
::sun
::star
::container
::XChild
;
132 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */