Home
last modified time | relevance | path

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

/trunk/main/forms/qa/integration/forms/
H A DFormPropertyBags.java112 XPropertyContainer propContainer = UnoRuntime.queryInterface( in checkSomething() local
114 assertTrue("XPropertyContainer not supported!", propContainer != null ); in checkSomething()
116 propContainer.addProperty( "SomeBoundText", PropertyAttribute.BOUND, "InitialBoundText" ); in checkSomething()
117propContainer.addProperty( "SomeTransientText", PropertyAttribute.TRANSIENT, "InitialTransientProp… in checkSomething()
118propContainer.addProperty( "SomeReadonlyText", PropertyAttribute.READONLY, "InitialReadonlyText" ); in checkSomething()
119 propContainer.addProperty( "SomeNumericValue", PropertyAttribute.BOUND, new Integer( 42 ) ); in checkSomething()
127 … try { propContainer.addProperty( "SomeBoundText", PropertyAttribute.BOUND, "InitialBoundText" ); } in checkSomething()