#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Mon, 13 Feb 2017 20:43:52 +0100
changeset 21432 9feea9e360ee
parent 21431 e3a47227faa1
child 21433 548194f34708
#DOCUMENTATION by cg class: Object comment/format in: #isRemoteObject #perform:ifNotUnderstood: #perform:with:ifNotUnderstood: #perform:with:with:ifNotUnderstood: #perform:withArguments:ifNotUnderstood:
Object.st
--- a/Object.st	Mon Feb 13 20:43:35 2017 +0100
+++ b/Object.st	Mon Feb 13 20:43:52 2017 +0100
@@ -522,8 +522,6 @@
 
 
 
-
-
 !Object methodsFor:'Compatibility-GNU'!
 
 display
@@ -625,8 +623,6 @@
 ! !
 
 
-
-
 !Object methodsFor:'accessing'!
 
 _at:index
@@ -8190,7 +8186,7 @@
 
 perform:aSelector ifNotUnderstood:exceptionBlock
     "try to send message aSelector to the receiver.
-     If its understood, return the method's returned value,
+     If it's understood, return the method's returned value,
      otherwise return the value of the exceptionBlock.
      Read this:
      Many programmers do an Error-handle to perform a similar
@@ -8220,11 +8216,13 @@
      1.2345 perform:#sqrt ifNotUnderstood:['sorry']
      12345 perform:#sqrt ifNotUnderstood:['sorry']
     "
+
+    "Modified (comment): / 13-02-2017 / 20:27:38 / cg"
 !
 
 perform:aSelector with:argument ifNotUnderstood:exceptionBlock
     "try to send message aSelector to the receiver.
-     If its understood, return the method's returned value,
+     If it's understood, return the method's returned value,
      otherwise return the value of the exceptionBlock.
      Read this:
      Many programmers do an Error-handle to perform a similar
@@ -8257,11 +8255,13 @@
      unknown := 'high there'.
      (unknown perform:#- with:2 ifNotUnderstood:['sorry']) printNewline.
     "
+
+    "Modified (comment): / 13-02-2017 / 20:27:41 / cg"
 !
 
 perform:aSelector with:arg1 with:arg2 ifNotUnderstood:exceptionBlock
     "try to send message aSelector to the receiver.
-     If its understood, return the method's returned value,
+     If it's understood, return the method's returned value,
      otherwise return the value of the exceptionBlock.
      Read this:
      Many programmers do an Error-handle to perform a similar
@@ -8285,11 +8285,13 @@
         ^ exceptionBlock value
     ].
     ^ val
+
+    "Modified (comment): / 13-02-2017 / 20:27:44 / cg"
 !
 
 perform:aSelector withArguments:argumentArray ifNotUnderstood:exceptionBlock
     "try to send message aSelector to the receiver.
-     If its understood, return the method's returned value,
+     If it's understood, return the method's returned value,
      otherwise return the value of the exceptionBlock.
      Read this:
      Many programmers do an Error-handle to perform a similar
@@ -8323,7 +8325,8 @@
      (unknown perform:#- withArguments:#(2) ifNotUnderstood:['sorry']) printNewline.
     "
 
-    "Modified: 27.3.1997 / 14:13:16 / cg"
+    "Modified: / 27-03-1997 / 14:13:16 / cg"
+    "Modified (comment): / 13-02-2017 / 20:27:46 / cg"
 ! !
 
 !Object methodsFor:'signal constants'!
@@ -9923,12 +9926,12 @@
 
 isRemoteObject
     "return true if the receiver is some kind of remoteObject,
-     false if its local - the method is only redefined in RemoteObject."
-
-    ^ false
-
-    "Created: 28.10.1996 / 15:18:45 / cg"
-    "Modified: 28.10.1996 / 15:20:57 / cg"
+     false if it's local - the method is only redefined in RemoteObject."
+
+    ^ false
+
+    "Created: / 28-10-1996 / 15:18:45 / cg"
+    "Modified (comment): / 13-02-2017 / 20:27:33 / cg"
 !
 
 isSequenceable