JavaMethodWithHandler.st
author Claus Gittinger <cg@exept.de>
Thu, 24 Nov 2011 12:54:59 +0100
changeset 2305 c11e70f81f74
parent 2257 b20b5c341450
child 2353 fa7400d022a0
permissions -rw-r--r--
fixed: #version_SVN ($ to §)

"
 COPYRIGHT (c) 1996-2011 by Claus Gittinger

 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) 1996-2011 by Claus Gittinger

 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.11 2011-11-24 11:52:40 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libjava/JavaMethodWithHandler.st,v 1.11 2011-11-24 11:52:40 cg Exp $'
!

version_SVN
    ^ '§Id: JavaMethodWithHandler.st,v 1.9 2011/08/18 18:42:48 vrany Exp §'
! !

JavaMethodWithHandler initialize!