ObsoleteObject.st
changeset 2689 ada9b102abcf
parent 1962 27bfab5c9c38
child 2957 46015145c398
equal deleted inserted replaced
2688:a7777c381e7e 2689:ada9b102abcf
    41     instance of the now existing class.
    41     instance of the now existing class.
    42     In this case, the BinaryInputManager will create a dummy class for the 
    42     In this case, the BinaryInputManager will create a dummy class for the 
    43     old (obsolete) object. This dummy class will be a subclass of ObsoleteObject.
    43     old (obsolete) object. This dummy class will be a subclass of ObsoleteObject.
    44 
    44 
    45     After the creation of the obsolete object, a signal will be raised (in 
    45     After the creation of the obsolete object, a signal will be raised (in 
    46     BinaryInputManager), which can be cought by the application to try some 
    46     BinaryInputManager), which can be caught by the application to try some 
    47     automatic or semi-automatic object conversion.
    47     automatic or semi-automatic object conversion.
    48     The signal gets the obsolete object and the new class as parameters.
    48     The signal gets the obsolete object and the new class as parameters.
    49 
    49 
    50     ObsoleteObject itself catches all messages, to avoid any use of the restored
    50     ObsoleteObject itself catches all messages, to avoid any use of the restored
    51     object (in case conversion failed or the signal was ignored).
    51     object (in case conversion failed or the signal was ignored).
   229 ! !
   229 ! !
   230 
   230 
   231 !ObsoleteObject class methodsFor:'documentation'!
   231 !ObsoleteObject class methodsFor:'documentation'!
   232 
   232 
   233 version
   233 version
   234     ^ '$Header: /cvs/stx/stx/libbasic/Attic/ObsoleteObject.st,v 1.14 1996-11-11 16:36:51 cg Exp $'
   234     ^ '$Header: /cvs/stx/stx/libbasic/Attic/ObsoleteObject.st,v 1.15 1997-06-16 18:21:23 cg Exp $'
   235 ! !
   235 ! !
   236 ObsoleteObject initialize!
   236 ObsoleteObject initialize!