Home
last modified time | relevance | path

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

/trunk/main/odk/examples/java/Inspector/
H A DInspectorPane.java309 Object oUnoObject = _oUnoServiceNode.getUnoObject(); in addPropertiesAndInterfacesOfService() local
310 …addInterfacesToTreeNode(_oUnoServiceNode, oUnoObject, m_oIntrospector.getInterfaces(oUnoObject, sS… in addPropertiesAndInterfacesOfService()
311 …addPropertiesToTreeNode(_oUnoServiceNode, oUnoObject, m_oIntrospector.getProperties(oUnoObject, sS… in addPropertiesAndInterfacesOfService()
464 Object oUnoObject = oUnoPropertyNode.getUnoReturnObject(); in expandNode() local
470 if ( oUnoObject.getClass().isArray()){ in expandNode()
472 addPrimitiveValuesToTreeNode(oUnoPropertyNode, oUnoObject); in expandNode()
475 addFacetteNodesToTreeNode(oUnoPropertyNode, oUnoObject); in expandNode()
481 Object oUnoObject = _oUnoNode.getUnoObject(); in expandNode() local
483 … addMethodsToTreeNode(oUnoFacetteNode, oUnoObject, m_oIntrospector.getMethods(oUnoObject)); in expandNode()
489 addPropertySetInfoNodesToTreeNode(oUnoFacetteNode, oUnoObject); in expandNode()
[all …]
H A DInspector.java224 Object oUnoObject = oUnoNode.getUnoObject(); in inspectSelectedNode() local
225 if (oUnoObject != null){ in inspectSelectedNode()
226 String sNodeDescription = UnoNode.getNodeDescription(oUnoObject); in inspectSelectedNode()
227 inspect(oUnoObject, sNodeDescription); in inspectSelectedNode()
H A DSourceCodeGenerator.java397 Object oUnoObject = _oUnoObjectDefinition.getUnoObject(); in isVariableDeclared() local
398 if (m_oIntrospector.isObjectPrimitive(oUnoObject)){ in isVariableDeclared()
401 else if (m_oIntrospector.isObjectSequence(oUnoObject)){ in isVariableDeclared()
406 String sUnoObjectIdentity = oUnoObject.toString(); in isVariableDeclared()
/trunk/main/wizards/com/sun/star/wizards/common/
H A DHelper.java60 …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()
[all …]
/trunk/main/odk/examples/DevelopersGuide/GUI/
H A DUnoDialogSample2.java86 …Object oUnoObject = xComponentLoader.loadComponentFromURL("private:factory/swriter", "_default", 0… in main() local
94 oUnoDialogSample2 = new UnoDialogSample2(xContext, xMCF, oUnoObject); in main()