ApplicationController.st
author claus
Tue, 29 Aug 1995 19:45:43 +0200
changeset 96 948318b2fbd4
parent 63 23617db5f7db
child 114 e577a2f332d0
permissions -rw-r--r--
.

"
 COPYRIGHT (c) 1995 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

ControllerWithMenu subclass:#ApplicationController
	 instanceVariableNames:''
	 classVariableNames:''
	 poolDictionaries:''
	 category:'Interface-Framework'
!

!ApplicationController class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1995 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

version
"
$Header: /cvs/stx/stx/libview2/ApplicationController.st,v 1.5 1995-08-29 17:43:02 claus Exp $
"
!

documentation
"
    Since many ST-80 classes are subclasses of ApplicationController, 
    this class is provided here to allow easier porting of ST-80 code.
    It does not (currently) provide any functionality; therefore, manual
    changes have to be made to get those applications to run under ST/X.
    (but at least, this enables you to fileIn that code)

    Instance variables:
"
! !

!ApplicationController methodsFor:'closing'!

close
    "close the application"

    self view destroy
! !