Lines Matching refs:object
37 interfaces of the same logical object.
49 <p> The UNO object does not export the state of the reference count (acquire() and
50 release() do not have return values). In general, also the UNO object itself
57 /** queries for a new interface to an existing UNO object.
60 are exported by the object. The caller asks the implementation of the object,
67 1) If queryInterface on a specific object has once returned a valid interface reference
69 calls on this object for the same type.
71 2) If queryInterface on a specific object has once returned a null reference
79 A and B for XInterface must return the same interface reference (object identity).
89 @param aType a UNO interface type, for which an object reference shall be obtained.
90 @return an interface reference in case the requested interface is supported by the object,
99 UNO object, it is often said, that you have a reference or a hard reference
100 to the object.
103 It is only allowed to invoke a method on an UNO object, when you keep
107 some time later, which may eventually lead to the destruction of the object.
115 <p>When the reference counter reaches 0, the object gets deleted.</p>
116 <p>Calling release() on the object is often called releasing
117 or clearing the reference to an object.