JavaMethodWithException.st
author Claus Gittinger <cg@exept.de>
Thu, 22 Dec 2005 18:00:03 +0100
changeset 2125 cfa7b540ebf1
parent 2107 f4509f6767fa
child 2151 c0b6570c6f9b
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
454
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
     1
"
2082
ee2fac5efadb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG
ee2fac5efadb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
     3
	      All Rights Reserved
454
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
     4
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
     5
 This software is furnished under a license and may be used
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
     6
 only in accordance with the terms of that license and with the
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
     8
 be provided or otherwise made available to, or used by, any
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
     9
 other person.  No title to or ownership of the software is
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    10
 hereby transferred.
2082
ee2fac5efadb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
    11
"
454
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    12
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    13
688
dcd829fd4094 *** empty log message ***
cg
parents: 616
diff changeset
    14
"{ Package: 'stx:libjava' }"
dcd829fd4094 *** empty log message ***
cg
parents: 616
diff changeset
    15
427
a7083b7a8724 *** empty log message ***
cg
parents: 422
diff changeset
    16
JavaMethod variableSubclass:#JavaMethodWithException
422
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    17
	instanceVariableNames:'exceptionTable'
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    18
	classVariableNames:''
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    19
	poolDictionaries:''
2107
f4509f6767fa category change
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
    20
	category:'Languages-Java-Classes'
422
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    21
!
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    22
454
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    23
!JavaMethodWithException class methodsFor:'documentation'!
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    24
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    25
copyright
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    26
"
2082
ee2fac5efadb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
    27
 COPYRIGHT (c) 1997 by eXept Software AG
ee2fac5efadb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
    28
	      All Rights Reserved
454
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    29
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    30
 This software is furnished under a license and may be used
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    31
 only in accordance with the terms of that license and with the
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    33
 be provided or otherwise made available to, or used by, any
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    34
 other person.  No title to or ownership of the software is
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    35
 hereby transferred.
2082
ee2fac5efadb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
    36
"
749
e898eaeff091 Synchronized with CVS repository at:
vranyj1
parents: 748
diff changeset
    37
454
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    38
! !
422
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    39
616
53bf2ec50346 *** empty log message ***
cg
parents: 454
diff changeset
    40
!JavaMethodWithException class methodsFor:'initialization'!
53bf2ec50346 *** empty log message ***
cg
parents: 454
diff changeset
    41
53bf2ec50346 *** empty log message ***
cg
parents: 454
diff changeset
    42
initialize
53bf2ec50346 *** empty log message ***
cg
parents: 454
diff changeset
    43
    self flags:(self flags bitOr:Behavior flagJavaMethod).
53bf2ec50346 *** empty log message ***
cg
parents: 454
diff changeset
    44
! !
53bf2ec50346 *** empty log message ***
cg
parents: 454
diff changeset
    45
422
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    46
!JavaMethodWithException methodsFor:'accessing'!
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    47
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    48
exceptionTable
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    49
    ^ exceptionTable
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    50
2082
ee2fac5efadb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
    51
    "Modified: / 16.4.1996 / 12:49:06 / cg"
ee2fac5efadb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
    52
    "Created: / 5.11.1998 / 19:58:38 / cg"
422
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    53
!
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    54
2082
ee2fac5efadb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
    55
setExceptionTable:anArray
422
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    56
    exceptionTable := anArray.
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    57
2082
ee2fac5efadb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
    58
    "Created: / 5.11.1998 / 19:58:43 / cg"
422
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    59
! !
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    60
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    61
!JavaMethodWithException class methodsFor:'documentation'!
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    62
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    63
version
2107
f4509f6767fa category change
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
    64
    ^ '$Header: /cvs/stx/stx/libjava/JavaMethodWithException.st,v 1.6 2002-11-22 20:09:15 cg Exp $'
422
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    65
! !
2107
f4509f6767fa category change
Claus Gittinger <cg@exept.de>
parents: 2082
diff changeset
    66
2082
ee2fac5efadb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 749
diff changeset
    67
JavaMethodWithException initialize!