Lines Matching refs:_oUnoObject

134     public boolean isContainer(Object _oUnoObject){  in isContainer()  argument
137 XIntrospectionAccess xIntrospectionAccessObject = getXIntrospectionAccess(_oUnoObject); in isContainer()
217 public boolean hasMethods(Object _oUnoObject){ in hasMethods() argument
218 boolean bHasMethods = (getMethods(_oUnoObject).length > 0); in hasMethods()
239 public boolean hasProperties(Object _oUnoObject){ in hasProperties() argument
240 boolean bHasProperties = (getProperties(_oUnoObject).length > 0); in hasProperties()
260 protected Property[] getProperties(Object _oUnoObject, String _sServiceName){ in getProperties() argument
261 Property[] aProperties = getProperties(_oUnoObject); in getProperties()
278 protected Type[] getInterfaces(Object _oUnoObject, String _sServiceName){ in getInterfaces() argument
279 Type[] aTypes = getInterfaces(_oUnoObject); in getInterfaces()
296 public boolean hasInterfaces(Object _oUnoObject){ in hasInterfaces() argument
297 return (getInterfaces(_oUnoObject).length > 0); in hasInterfaces()
312 public static boolean isObjectSequence(Object _oUnoObject){ in isObjectSequence() argument
313 Type aType = AnyConverter.getType(_oUnoObject); in isObjectSequence()
318 public static boolean isObjectPrimitive(Object _oUnoObject){ in isObjectPrimitive() argument
320 if (_oUnoObject != null){ in isObjectPrimitive()
321 Type aType = AnyConverter.getType(_oUnoObject); in isObjectPrimitive()
322 breturn = isObjectPrimitive(_oUnoObject.getClass(), aType.getTypeClass()); in isObjectPrimitive()
498 public static boolean isUnoTypeObject(Object _oUnoObject){ in isUnoTypeObject() argument
499 return isOfUnoType(_oUnoObject, "com.sun.star.uno.Type"); in isUnoTypeObject()
503 public static boolean isUnoPropertyTypeObject(Object _oUnoObject){ in isUnoPropertyTypeObject() argument
504 return isOfUnoType(_oUnoObject, "com.sun.star.beans.Property"); in isUnoPropertyTypeObject()
508 public static boolean isUnoPropertyValueTypeObject(Object _oUnoObject){ in isUnoPropertyValueTypeObject() argument
509 return isOfUnoType(_oUnoObject, "com.sun.star.beans.PropertyValue"); in isUnoPropertyValueTypeObject()
513 public static boolean isOfUnoType(Object _oUnoObject, String _sTypeName){ in isOfUnoType() argument
515 if (_oUnoObject != null){ in isOfUnoType()
516 if (_oUnoObject.getClass().isArray()){ in isOfUnoType()
517 if (!_oUnoObject.getClass().getComponentType().isPrimitive()){ in isOfUnoType()
518 Object[] oUnoArray = (Object[]) _oUnoObject; in isOfUnoType()
526 bIsUnoObject = (_oUnoObject.getClass().getName().equals(_sTypeName)); in isOfUnoType()
570 public boolean hasSupportedServices(Object _oUnoObject){ in hasSupportedServices() argument
572 …ceInfo xServiceInfo = ( XServiceInfo ) UnoRuntime.queryInterface( XServiceInfo.class, _oUnoObject); in hasSupportedServices()