StandaloneStartupHeadless.st
changeset 20671 dd3cd0018844
parent 19519 259784b8b810
equal deleted inserted replaced
20670:5a948d181ab6 20671:dd3cd0018844
    40 "
    40 "
    41     When smalltalk is started as IDE (stx), the show starts in Smalltalk>>start.
    41     When smalltalk is started as IDE (stx), the show starts in Smalltalk>>start.
    42     In contrast, when a standAlone app is linked, 
    42     In contrast, when a standAlone app is linked, 
    43     the show starts in the startup class's start method.
    43     the show starts in the startup class's start method.
    44 
    44 
    45     This class is a subclassable template class for a standalone headless-application's startup.
    45     This class is an abstract, subclassable template for a standalone headless-application's startup.
    46     For your own stand alone programs, define a subclass of this, 
    46     For your own stand alone programs, define a subclass of this, 
    47     and redefine the #main: method there.
    47     and redefine the #main: method there.
    48     (of course, the other methods can also be redefined.)
    48     (of course, the other methods can also be redefined.)
    49 
    49 
    50     [author:]
    50     [author:]