diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-05-10 17:00:43 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2004-05-10 17:00:43 +0000 |
commit | 28ee3c8ddf726ee2bd3e4ab794068a2a9b6e0ced (patch) | |
tree | 1b1b64d879e05e896dff3acffcd9041ab95ad72d | |
parent | d149866482c9d053b903342befdaff523a22f91e (diff) |
INTEGRATION: CWS fwkbugfix02 (1.2.148); FILE MERGED
2004/03/25 09:09:43 mav 1.2.148.2: #116056# interfaces review
2004/03/22 10:14:27 mav 1.2.148.1: #115011# review idl files
-rw-r--r-- | offapi/com/sun/star/embed/EntryInitModes.idl | 45 |
1 files changed, 27 insertions, 18 deletions
diff --git a/offapi/com/sun/star/embed/EntryInitModes.idl b/offapi/com/sun/star/embed/EntryInitModes.idl index d7b424a3af1f..558362fdd409 100644 --- a/offapi/com/sun/star/embed/EntryInitModes.idl +++ b/offapi/com/sun/star/embed/EntryInitModes.idl @@ -2,9 +2,9 @@ * * $RCSfile: EntryInitModes.idl,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: kz $ $Date: 2003-09-11 10:23:03 $ + * last change: $Author: hr $ $Date: 2004-05-10 18:00:43 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -62,43 +62,52 @@ #define __com_sun_star_embed_EntryInitModes_idl__ -//============================================================================= +//============================================================================ module com { module sun { module star { module embed { -//============================================================================= -/** Possible modes to initialize object persistance. +//============================================================================ +/** This constant set contains possible modes to initialize object + persistance. - @see XEmbeddedObject + @see XEmbedPersist */ constants EntryInitModes { + // ----------------------------------------------------------------------- /** In case object persistance is created based on existing entry, the object should be initialized from this entry. Otherwise the object should be initialized as a new one. */ - const long ENTRY_DEFAULT_INIT = 0; + const long DEFAULT_INIT = 0; - /** Initialize the object as a new empty one. + // ----------------------------------------------------------------------- + /** The object should be initialized as a new empty one. */ - const long ENTRY_TRUNCATE_INIT = 1; + const long TRUNCATE_INIT = 1; - /** Initialize object as a new one only in case it still was not initialized. - If the object initialized already do not reinitialize it. + // ----------------------------------------------------------------------- + /** The object should be initialized as a new one only in case it still + was not initialized. If the object initialized already do not + reinitialize it. */ - const long ENTRY_NO_INIT = 2; + const long NO_INIT = 2; - /** Initialize object using additional arguments as MediaDescriptor. + // ----------------------------------------------------------------------- + /** The object should be initialized using additional arguments from + provided + <type scope="com::sun::star::document">MediaDescriptor</type>. */ - const long ENTRY_MEDIA_DESCRIPTOR_INIT = 3; + const long MEDIA_DESCRIPTOR_INIT = 3; - /** Initialize the object as a link using URL provided in additional arguments. + // ----------------------------------------------------------------------- + /** The object should be initialized as a link using URL provided in + additional arguments. */ - const long ENTRY_URL_LINK_INIT = 4; - + const long URL_LINK_INIT = 4; }; -//============================================================================= +//============================================================================ }; }; }; }; |