Lines Matching refs:xCont
43 XNameContainer xCont = UnoRuntime.queryInterface( in checkNamedPropertyValues() local
50 assertNotNull("XNameContainer was queried but returned null.", xCont); in checkNamedPropertyValues()
61 Type t = xCont.getElementType(); in checkNamedPropertyValues()
62 assertFalse("Initial container is not empty.", xCont.hasElements()); in checkNamedPropertyValues()
64 xCont.insertByName("prop1", prop1); in checkNamedPropertyValues()
65 PropertyValue[]ret = (PropertyValue[])xCont.getByName("prop1"); in checkNamedPropertyValues()
68 xCont.replaceByName("prop1", prop2); in checkNamedPropertyValues()
69 ret = (PropertyValue[])xCont.getByName("prop1"); in checkNamedPropertyValues()
72 xCont.removeByName("prop1"); in checkNamedPropertyValues()
73 assertFalse("Could not remove PropertyValue.", xCont.hasElements()); in checkNamedPropertyValues()
74 xCont.insertByName("prop1", prop1); in checkNamedPropertyValues()
75 xCont.insertByName("prop2", prop2); in checkNamedPropertyValues()
76 assertTrue("Did not insert PropertyValue.", xCont.hasElements()); in checkNamedPropertyValues()
77 String[] names = xCont.getElementNames(); in checkNamedPropertyValues()
86 xCont.insertByName("prop2", prop1); in checkNamedPropertyValues()
93 xCont.insertByName("prop3", "Example String"); in checkNamedPropertyValues()
100 xCont.removeByName("prop3"); in checkNamedPropertyValues()