AppControl.st
changeset 50 53bc56e07e8f
child 52 6dc870beba69
equal deleted inserted replaced
49:f7938135fb9a 50:53bc56e07e8f
       
     1 "
       
     2  COPYRIGHT (c) 1995 by Claus Gittinger
       
     3 	      All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
       
    12 
       
    13 Model subclass:#ApplicationController
       
    14 	 instanceVariableNames:''
       
    15 	 classVariableNames:''
       
    16 	 poolDictionaries:''
       
    17 	 category:'ST80-Compatibility'
       
    18 !
       
    19 
       
    20 !ApplicationModel class methodsFor:'documentation'!
       
    21 
       
    22 copyright
       
    23 "
       
    24  COPYRIGHT (c) 1995 by Claus Gittinger
       
    25 	      All Rights Reserved
       
    26 
       
    27  This software is furnished under a license and may be used
       
    28  only in accordance with the terms of that license and with the
       
    29  inclusion of the above copyright notice.   This software may not
       
    30  be provided or otherwise made available to, or used by, any
       
    31  other person.  No title to or ownership of the software is
       
    32  hereby transferred.
       
    33 "
       
    34 !
       
    35 
       
    36 version
       
    37 "
       
    38 $Header: /cvs/stx/stx/libview2/Attic/AppControl.st,v 1.1 1995-03-23 16:51:23 claus Exp $
       
    39 "
       
    40 !
       
    41 
       
    42 documentation
       
    43 "
       
    44     Since many ST-80 classes are subclasses of ApplicationController, 
       
    45     this class is provided here to allow easier porting of ST-80 code.
       
    46     It does not (currently) provide any functionality; therefore, manual
       
    47     changes have to be made to get those applications to run under ST/X.
       
    48     (but at least, this enables you to fileIn that code)
       
    49 
       
    50     Instance variables:
       
    51 "
       
    52 ! !
       
    53