JavaMethodWithException.st
author cg
Mon, 16 Nov 1998 15:17:54 +0000
changeset 454 38f590639d65
parent 427 a7083b7a8724
child 616 53bf2ec50346
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
"
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
     3
              All Rights Reserved
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.
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    11
"
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    12
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    13
427
a7083b7a8724 *** empty log message ***
cg
parents: 422
diff changeset
    14
JavaMethod variableSubclass:#JavaMethodWithException
422
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    15
	instanceVariableNames:'exceptionTable'
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    16
	classVariableNames:''
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    17
	poolDictionaries:''
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    18
	category:'Java-Classes'
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    19
!
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    20
454
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    21
!JavaMethodWithException class methodsFor:'documentation'!
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    22
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    23
copyright
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    24
"
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    25
 COPYRIGHT (c) 1997 by eXept Software AG
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    26
              All Rights Reserved
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    27
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    28
 This software is furnished under a license and may be used
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    29
 only in accordance with the terms of that license and with the
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    31
 be provided or otherwise made available to, or used by, any
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    32
 other person.  No title to or ownership of the software is
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    33
 hereby transferred.
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    34
"
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    35
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    36
! !
422
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    37
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    38
!JavaMethodWithException methodsFor:'accessing'!
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    39
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    40
exceptionTable
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    41
    ^ exceptionTable
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    42
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    43
    "Modified: / 16.4.1996 / 12:49:06 / cg"
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    44
    "Created: / 5.11.1998 / 19:58:38 / cg"
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    45
!
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    46
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    47
setExceptionTable:anArray
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    48
    exceptionTable := anArray.
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    49
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    50
    "Created: / 5.11.1998 / 19:58:43 / cg"
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    51
! !
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    52
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    53
!JavaMethodWithException class methodsFor:'documentation'!
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    54
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    55
version
454
38f590639d65 *** empty log message ***
cg
parents: 427
diff changeset
    56
    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaMethodWithException.st,v 1.3 1998/11/16 15:17:26 cg Exp $'
422
52d7ad2a295d initial checkin
cg
parents:
diff changeset
    57
! !