Object.st
changeset 15903 7de2ea21e054
parent 15891 22552f0cd4e4
child 15931 79c71d7fd9e1
child 18117 eb433f2c42b2
equal deleted inserted replaced
15902:873997dcf4cf 15903:7de2ea21e054
   268 abortAllSignal
   268 abortAllSignal
   269     "return the signal used to abort user actions (much like AbortSignal).
   269     "return the signal used to abort user actions (much like AbortSignal).
   270      This signal is supposed to abort multiple operation actions, and get out of
   270      This signal is supposed to abort multiple operation actions, and get out of
   271      the loop (such as when confirming multiple class deletions etc.)"
   271      the loop (such as when confirming multiple class deletions etc.)"
   272 
   272 
   273     ^ AbortAllSignal
   273     ^ AbortAllOperationRequest
   274 !
   274 !
   275 
   275 
   276 abortSignal
   276 abortSignal
   277     "return the signal used to abort user actions. This signal is only
   277     "return the signal used to abort user actions. This signal is only
   278      raised if caught (by the debugger), and will lead way out of the
   278      raised if caught (by the debugger), and will lead way out of the
   513 ! !
   513 ! !
   514 
   514 
   515 
   515 
   516 
   516 
   517 
   517 
       
   518 
       
   519 
   518 !Object methodsFor:'Compatibility-Dolphin'!
   520 !Object methodsFor:'Compatibility-Dolphin'!
   519 
   521 
   520 stbFixup: anSTBInFiler at: newObjectIndex
   522 stbFixup: anSTBInFiler at: newObjectIndex
   521     "Answer the true object that must be used to represent the receiver when read from anSTBInFiler.
   523     "Answer the true object that must be used to represent the receiver when read from anSTBInFiler.
   522      Typically this is overridden by subclasses of STBProxy to answer the proxied object. Other classes
   524      Typically this is overridden by subclasses of STBProxy to answer the proxied object. Other classes
   667      arr at:2 put:(o2 := Point new).
   669      arr at:2 put:(o2 := Point new).
   668      o1 becomeSameAs:o2.
   670      o1 becomeSameAs:o2.
   669      (arr at:1) ~~ o2 ifTrue:[self halt].
   671      (arr at:1) ~~ o2 ifTrue:[self halt].
   670     "
   672     "
   671 ! !
   673 ! !
       
   674 
   672 
   675 
   673 
   676 
   674 !Object methodsFor:'accessing'!
   677 !Object methodsFor:'accessing'!
   675 
   678 
   676 _at:index
   679 _at:index
  9923 
  9926 
  9924 
  9927 
  9925 !Object class methodsFor:'documentation'!
  9928 !Object class methodsFor:'documentation'!
  9926 
  9929 
  9927 version
  9930 version
  9928     ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.744 2014-01-10 09:09:45 stefan Exp $'
  9931     ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.745 2014-01-23 16:11:47 stefan Exp $'
  9929 !
  9932 !
  9930 
  9933 
  9931 version_CVS
  9934 version_CVS
  9932     ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.744 2014-01-10 09:09:45 stefan Exp $'
  9935     ^ '$Header: /cvs/stx/stx/libbasic/Object.st,v 1.745 2014-01-23 16:11:47 stefan Exp $'
  9933 !
  9936 !
  9934 
  9937 
  9935 version_SVN
  9938 version_SVN
  9936     ^ '$ Id: Object.st 10643 2011-06-08 21:53:07Z vranyj1  $'
  9939     ^ '$ Id: Object.st 10643 2011-06-08 21:53:07Z vranyj1  $'
  9937 ! !
  9940 ! !