summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-14 15:13:23 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-14 15:13:23 +0100
commit43379fbdaea4c5a2d50495910126540584bc807e (patch)
treeed702460831a3e0308cc15c3cf65d1b86e7c1085 /offapi
parent7af54f5dfe1aa651cfec80727c18a83de6737762 (diff)
gridsort: XMutableGridData: renamed updateRow to updateRowData for consistency; introduced updateRowToolTip as shortcut for multiple updateCellToolTip calls
Diffstat (limited to 'offapi')
-rwxr-xr-xoffapi/com/sun/star/awt/grid/XMutableGridDataModel.idl13
1 files changed, 12 insertions, 1 deletions
diff --git a/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl b/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl
index 75b8944b8ef3..8764fa705c7f 100755
--- a/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl
+++ b/offapi/com/sun/star/awt/grid/XMutableGridDataModel.idl
@@ -106,7 +106,7 @@ interface XMutableGridDataModel : XGridDataModel
@throws ::com::sun::star::lang::IndexOutOfBoundsException
if the lengths of the <code>ColumnIndexes</code> and <code>Values</code> sequences are not equal.
*/
- void updateRow( [in] sequence< long > ColumnIndexes, [in] long RowIndex, [in] sequence< any > Values )
+ void updateRowData( [in] sequence< long > ColumnIndexes, [in] long RowIndex, [in] sequence< any > Values )
raises ( ::com::sun::star::lang::IndexOutOfBoundsException
, ::com::sun::star::lang::IllegalArgumentException);
@@ -126,6 +126,17 @@ interface XMutableGridDataModel : XGridDataModel
void updateCellToolTip( [in] long ColumnIndex, [in] long RowIndex, [in] any Value )
raises ( ::com::sun::star::lang::IndexOutOfBoundsException );
+ /** updates the tooltip for all cells of a given row
+
+ <p>Effectively this method is a shortcut for calling <member>updateCellToolTip</member> multiple
+ times in a row, for all cells of a given row.</p>
+
+ @see XGridDataModel::getCellToolTip
+ @see updateCellToolTip
+ */
+ void updateRowToolTip( [in] long RowIndex, [in] any Value )
+ raises ( ::com::sun::star::lang::IndexOutOfBoundsException );
+
//-------------------------------------------------------------------------
/** registers listener to be notified of data changes in the model