Boolean.st
changeset 9147 9e6e5c149778
parent 8830 df7adfaf1a57
child 9448 d7fd5533b1cb
equal deleted inserted replaced
9146:56176a7bf685 9147:9e6e5c149778
    94 !Boolean class methodsFor:'queries'!
    94 !Boolean class methodsFor:'queries'!
    95 
    95 
    96 hasSharedInstances
    96 hasSharedInstances
    97     "return true if this class has shared instances, that is, instances
    97     "return true if this class has shared instances, that is, instances
    98      with the same value are identical.
    98      with the same value are identical.
    99      False is returned here, only redefined in classes which have unified
    99      True returned here - there is only one true and only one false."
   100      instances (or should be treated so)."
   100 
   101 
   101     ^ true
   102     ^ true
       
   103 
       
   104 !
   102 !
   105 
   103 
   106 isBuiltInClass
   104 isBuiltInClass
   107     "return true if this class is known by the run-time-system.
   105     "return true if this class is known by the run-time-system.
   108      Here, true is returned (for my two subclasses)."
   106      Here, true is returned (for my two subclasses)."
   232 ! !
   230 ! !
   233 
   231 
   234 !Boolean class methodsFor:'documentation'!
   232 !Boolean class methodsFor:'documentation'!
   235 
   233 
   236 version
   234 version
   237     ^ '$Header: /cvs/stx/stx/libbasic/Boolean.st,v 1.33 2005-04-08 22:48:45 stefan Exp $'
   235     ^ '$Header: /cvs/stx/stx/libbasic/Boolean.st,v 1.34 2006-02-20 11:26:13 cg Exp $'
   238 ! !
   236 ! !