JavaMethodWithHandler.st
author Claus Gittinger <cg@exept.de>
Fri, 01 Sep 2000 17:22:34 +0200
changeset 2082 ee2fac5efadb
parent 749 e898eaeff091
child 2107 f4509f6767fa
permissions -rw-r--r--
*** empty log message ***

"
 COPYRIGHT (c) 1997 by eXept Software AG
	      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.
"


"{ Package: 'stx:libjava' }"

JavaMethodWithException variableSubclass:#JavaMethodWithHandler
	instanceVariableNames:'exceptionHandlerTable'
	classVariableNames:''
	poolDictionaries:''
	category:'Java-Classes'
!

!JavaMethodWithHandler class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1997 by eXept Software AG
	      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.
"

! !

!JavaMethodWithHandler class methodsFor:'initialization'!

initialize
    self flags:(self flags bitOr:Behavior flagJavaMethod).
! !

!JavaMethodWithHandler methodsFor:'accessing'!

exceptionHandlerTable
    ^ exceptionHandlerTable

    "Modified: / 16.4.1996 / 12:49:06 / cg"
    "Created: / 16.10.1998 / 01:18:28 / cg"
!

setExceptionHandlerTable:anArray
    exceptionHandlerTable := anArray.

    "Created: / 16.10.1998 / 01:19:00 / cg"
! !

!JavaMethodWithHandler class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libjava/JavaMethodWithHandler.st,v 1.7 2000-09-01 15:22:34 cg Exp $'
! !
JavaMethodWithHandler initialize!