Home
last modified time | relevance | path

Searched refs:dataModel (Results 1 – 2 of 2) sorted by relevance

/AOO41X/main/toolkit/qa/complex/toolkit/
H A DGridControl.java103 …final XGridDataModel dataModel = UnoRuntime.queryInterface( XGridDataModel.class, m_gridControlMod… in impl_recreateGridModel() local
104 assertNotNull( "the control model is expected to have an initial data model", dataModel ); in impl_recreateGridModel()
106 dataModel ); in impl_recreateGridModel()
219 final XMutableGridDataModel dataModel = DefaultGridDataModel.create( m_context ); in testMutableGridDataModel() local
220 dataModel.addRow( 0, new Object[] { 1 } ); in testMutableGridDataModel()
221 …assertEquals( "unexpected column count after adding the most simple row", 1, dataModel.getColumnCo… in testMutableGridDataModel()
222 dataModel.addRow( 1, new Object[] { 1, 2 } ); in testMutableGridDataModel()
223 …assertEquals( "implicit extension of the column count doesn't work", 2, dataModel.getColumnCount()… in testMutableGridDataModel()
445 … final XMutableGridDataModel dataModel = UnoRuntime.queryInterface( XMutableGridDataModel.class, in testView() local
447 assertNotNull( dataModel ); in testView()
[all …]
/AOO41X/main/oox/source/drawingml/diagram/
H A Ddiagramfragmenthandler.cxx67 case DGM_TOKEN( dataModel ): in createFastChildContext()