From 969807901d9dae91be7fc6ba9aa518f4d25b5034 Mon Sep 17 00:00:00 2001 From: Cao Cuong Ngo Date: Tue, 18 Jun 2013 15:10:26 +0200 Subject: Cmis Property Add MultiValued, OpenChoice and Choices to CMIS Property Change-Id: Iade033c86878368b39a0264ad0a56d0286e6bffb --- offapi/com/sun/star/document/CmisProperty.idl | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'offapi/com/sun/star') 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; -- cgit