Lines Matching refs:oUnoObject

60 …public static void setUnoPropertyValue(Object oUnoObject, String PropertyName, Object PropertyValu…  in setUnoPropertyValue()  argument
64 XPropertySet xPSet = UnoRuntime.queryInterface(XPropertySet.class, oUnoObject); in setUnoPropertyValue()
81 public static Object getUnoObjectbyName(Object oUnoObject, String ElementName) in getUnoObjectbyName() argument
85 …NameAccess xName = UnoRuntime.queryInterface(com.sun.star.container.XNameAccess.class, oUnoObject); in getUnoObjectbyName()
118 …public static Object getUnoPropertyValue(Object oUnoObject, String PropertyName, java.lang.Class x… in getUnoPropertyValue() argument
122 if (oUnoObject != null) in getUnoPropertyValue()
124 XPropertySet xPSet = UnoRuntime.queryInterface(XPropertySet.class, oUnoObject); in getUnoPropertyValue()
194 public static Object getUnoPropertyValue(Object oUnoObject, String PropertyName) in getUnoPropertyValue() argument
198 if (oUnoObject != null) in getUnoPropertyValue()
200 XPropertySet xPSet = UnoRuntime.queryInterface(XPropertySet.class, oUnoObject); in getUnoPropertyValue()
212 public static Object getUnoArrayPropertyValue(Object oUnoObject, String PropertyName) in getUnoArrayPropertyValue() argument
216 if (oUnoObject != null) in getUnoArrayPropertyValue()
218 XPropertySet xPSet = UnoRuntime.queryInterface(XPropertySet.class, oUnoObject); in getUnoArrayPropertyValue()
233 public static Object getUnoStructValue(Object oUnoObject, String PropertyName) in getUnoStructValue() argument
237 if (oUnoObject != null) in getUnoStructValue()
239 XPropertySet xPSet = UnoRuntime.queryInterface(XPropertySet.class, oUnoObject); in getUnoStructValue()
254 …public static void setUnoPropertyValues(Object oUnoObject, String[] PropertyNames, Object[] Proper… in setUnoPropertyValues() argument
258 … xMultiPSetLst = UnoRuntime.queryInterface(com.sun.star.beans.XMultiPropertySet.class, oUnoObject); in setUnoPropertyValues()
268 setUnoPropertyValue(oUnoObject, PropertyNames[i], PropertyValues[i]); in setUnoPropertyValues()