diff options
author | Frank Schoenheit [fs] <frank.schoenheit@oracle.com> | 2011-01-19 15:25:45 +0100 |
---|---|---|
committer | Frank Schoenheit [fs] <frank.schoenheit@oracle.com> | 2011-01-19 15:25:45 +0100 |
commit | 2319e97d11bc8e02c339c477055af94a38279cf2 (patch) | |
tree | 3fb555e90fae835e7607802206c7bbf46bac9bb2 /offapi/com/sun/star/awt | |
parent | 6561e702dbc3fca4f01b3ceaf1f07aa1324043b8 (diff) |
gridsort: document the relationship between soorting the data and notifying XGridDataListeners
Diffstat (limited to 'offapi/com/sun/star/awt')
-rwxr-xr-x | offapi/com/sun/star/awt/grid/XSortableMutableGridDataModel.idl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/offapi/com/sun/star/awt/grid/XSortableMutableGridDataModel.idl b/offapi/com/sun/star/awt/grid/XSortableMutableGridDataModel.idl index 3ed7c34e3254..dbe9cbc5f5cb 100755 --- a/offapi/com/sun/star/awt/grid/XSortableMutableGridDataModel.idl +++ b/offapi/com/sun/star/awt/grid/XSortableMutableGridDataModel.idl @@ -40,7 +40,15 @@ module com { module sun { module star { module awt { module grid { */ interface XSortableMutableGridDataModel { + /** provides access to the basic functionality of a grid data model, plus functions to modify it. + */ interface XMutableGridDataModel; + + /** provides means to sort the data represented by the model. + + <p>If you set a new column sort order, the implementation will notify the registered <type>XGridDataListener</type>s + via a call to its <member>XGridDataListener::dataChanged</member> method.</p> + */ interface XSortableGridDataModel; }; |