diff options
author | Cao Cuong Ngo <cao.cuong.ngo@gmail.com> | 2013-06-18 15:10:26 +0200 |
---|---|---|
committer | Cédric Bosdonnat <cedric.bosdonnat.ooo@free.fr> | 2013-09-02 13:51:48 +0200 |
commit | 969807901d9dae91be7fc6ba9aa518f4d25b5034 (patch) | |
tree | 463e4584618060517fb705b1c563c19ff9e63692 /offapi | |
parent | 91d9430d68434cd267b481f73d4bc522a902eeda (diff) |
Cmis Property
Add MultiValued, OpenChoice and Choices to CMIS Property
Change-Id: Iade033c86878368b39a0264ad0a56d0286e6bffb
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/document/CmisProperty.idl | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/offapi/com/sun/star/document/CmisProperty.idl b/offapi/com/sun/star/document/CmisProperty.idl index f6009a0f3685..65caab11ead1 100644 --- a/offapi/com/sun/star/document/CmisProperty.idl +++ b/offapi/com/sun/star/document/CmisProperty.idl @@ -21,7 +21,7 @@ module com { module sun { module star { module document { -/** specifies a CMIS property value. +/** specifies a CMIS property. */ struct CmisProperty { @@ -42,6 +42,19 @@ struct CmisProperty */ boolean Required; + /** specifies if the property has multiple value + */ + boolean MultiValued; + + /** specifies if the property value can be freely set + or is restricted from a list of choices. + */ + boolean OpenChoice; + + /** specifies the possible choices of the values. + */ + any Choices; + /** specifies value of the property */ any Value; |