added: #isProxy
authorClaus Gittinger <cg@exept.de>
Sun, 21 Nov 2010 11:18:32 +0100
changeset 13140 919308f42885
parent 13139 288a01786ed5
child 13141 fd2f6d457c6d
added: #isProxy
Object.st
--- a/Object.st	Fri Nov 19 14:25:20 2010 +0100
+++ b/Object.st	Sun Nov 21 11:18:32 2010 +0100
@@ -8807,6 +8807,15 @@
     "Created: / 10-08-2006 / 16:24:53 / cg"
 !
 
+isProxy
+    "return true, if the receiver is a proxy for another (lazy loaded) object.
+     False is returned here."
+
+    ^ false
+
+    "Created: / 21-11-2010 / 11:15:46 / cg"
+!
+
 isRealNameSpace
     "return true, if the receiver is really a nameSpace (i.e. a NameSpace, but not Smalltalk).
      False is returned here - the method is only redefined in Namespace."
@@ -9320,11 +9329,11 @@
 !Object class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.654 2010-11-18 10:41:33 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.655 2010-11-21 10:18:32 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.654 2010-11-18 10:41:33 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.655 2010-11-21 10:18:32 cg Exp $'
 ! !
 
 Object initialize!