:: com :: sun :: star :: awt :: grid ::

service SortableGridDataModel
Supported Interface
XSortableMutableGridDataModel


Constructors' Summary
create creates a new instance of the SortableGridDataModel  
createWithCollator creates a new instance of the ScortableDefaultGridDataModel, passing a collator to be used for string comparison.  
Constructors' Details
create
create( [in] XMutableGridDataModel  DelegatorModel )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
creates a new instance of the SortableGridDataModel

For string comparison, a default ::com::sun::star::i18n::Collator, based on the system's locale, will be used.

Parameter DelegatorModel
the data model to which read requests are delegated.
Throws
::com::sun::star::lang::IllegalArgumentException if the given DelegatorModel is NULL
createWithCollator
createWithCollator( [in] XMutableGridDataModel  DelegatorModel,
[in] ::com::sun::star::i18n::XCollator  Collator )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
creates a new instance of the ScortableDefaultGridDataModel, passing a collator to be used for string comparison.
Parameter DelegatorModel
is the data model to which read requests are delegated
Parameter Collator
is the collator to be used for string comparison
Throws
::com::sun::star::lang::IllegalArgumentException if the given DelegatorModel is NULL

 
Top of Page