Package com.sun.star.uno
Interface IQueryInterface
public interface IQueryInterface
This is the delegator interface for Java objects implementing interfaces of
 an underlying UNO object.
 
Calls are delegated through the UnoRuntime to this
 interface.  Implement this interface in case you want to customize the
 behaviour of UnoRuntime.queryInterface.
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptiongetOid()Returns the unique object identifier (OID) of the underlying UNO object.booleanTests if the given reference represents a facet of the underlying UNO object.queryInterface(Type type) Returns an object implementing the requested interface type.
- 
Method Details- 
getOidString getOid()Returns the unique object identifier (OID) of the underlying UNO object.- Returns:
- the OID of the underlying object
 
- 
queryInterfaceReturns an object implementing the requested interface type.- Parameters:
- type- the requested UNO interface type; must be a- Typeobject representing a UNO interface type
- Returns:
- a reference to the requested UNO interface type if available,
 otherwise null
- See Also:
 
- 
isSameTests if the given reference represents a facet of the underlying UNO object.- Parameters:
- object- a reference to any Java object representing (a facet of) a UNO object; may be- null
- Returns:
- trueif and only if- objectis not- nulland represents the same UNO object as this object
 
 
-