summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star
diff options
context:
space:
mode:
authorSamuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>2023-11-27 11:01:09 +0100
committerSamuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>2023-12-07 08:03:36 +0100
commit030b72df0af04752157378e07703db0e035ff9c2 (patch)
treeb1c76b9c1e0bee5da2ba8ad724f39edc988bd2cb /offapi/com/sun/star
parent7575e8afcadc1b907f803ebfd1e38ef168597eec (diff)
tdf#157432 Expert config: Allow filtering by changed values
Change-Id: Ib8bbb7fc9e8014a9367278f3fa640f53af46dd2b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159986 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt@allotropia.de>
Diffstat (limited to 'offapi/com/sun/star')
-rw-r--r--offapi/com/sun/star/configuration/XDocumentation.idl16
1 files changed, 16 insertions, 0 deletions
diff --git a/offapi/com/sun/star/configuration/XDocumentation.idl b/offapi/com/sun/star/configuration/XDocumentation.idl
index f44a107c4508..7c82659eb2cc 100644
--- a/offapi/com/sun/star/configuration/XDocumentation.idl
+++ b/offapi/com/sun/star/configuration/XDocumentation.idl
@@ -43,6 +43,22 @@ interface XDocumentation {
type getTypeByHierarchicalName( [in] string aName )
raises( com::sun::star::container::NoSuchElementException,
com::sun::star::util::InvalidStateException );
+
+ /** @returns
+ whether the requested object was modified
+
+ @param aName
+ the hierarchical name of the object.
+
+ @throws NoSuchElementException
+ if an element under aName does not exist.
+
+ @throws InvalidStateException
+ when the object has an invalid type
+ */
+ boolean getModifiedByHierarchicalName( [in] string aName )
+ raises( com::sun::star::container::NoSuchElementException,
+ com::sun::star::util::InvalidStateException );
};
}; }; }; };