JavaMethodWithHandler.st
author Stefan Vogel <sv@exept.de>
Tue, 08 Nov 2005 17:49:17 +0100
changeset 2121 7b06266d8249
parent 2107 f4509f6767fa
child 2151 c0b6570c6f9b
permissions -rw-r--r--
/tmp/cvsyRpZ5v

"
 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:'Languages-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.8 2002-11-22 20:09:06 cg Exp $'
! !

JavaMethodWithHandler initialize!