Lines Matching refs:xCont
43 XIndexContainer xCont = UnoRuntime.queryInterface( in checkIndexedPropertyValues() local
50 assertNotNull("XIndexContainer was queried but returned null.", xCont); in checkIndexedPropertyValues()
61 Type t = xCont.getElementType(); in checkIndexedPropertyValues()
62 assertEquals("Initial container is not empty", 0, xCont.getCount()); in checkIndexedPropertyValues()
63 xCont.insertByIndex(0, prop1); in checkIndexedPropertyValues()
64 PropertyValue[]ret = (PropertyValue[])xCont.getByIndex(0); in checkIndexedPropertyValues()
67 xCont.replaceByIndex(0, prop2); in checkIndexedPropertyValues()
68 ret = (PropertyValue[])xCont.getByIndex(0); in checkIndexedPropertyValues()
71 xCont.removeByIndex(0); in checkIndexedPropertyValues()
73 !xCont.hasElements() && xCont.getCount()==0); in checkIndexedPropertyValues()
74 xCont.insertByIndex(0, prop1); in checkIndexedPropertyValues()
75 xCont.insertByIndex(1, prop2); in checkIndexedPropertyValues()
77 xCont.hasElements() && xCont.getCount()==2); in checkIndexedPropertyValues()
80 xCont.insertByIndex(25, prop2); in checkIndexedPropertyValues()
87 xCont.removeByIndex(25); in checkIndexedPropertyValues()
94 xCont.insertByIndex(2, "Example String"); in checkIndexedPropertyValues()