JavaExceptionTableEntry.st
changeset 135 098936234135
parent 122 e731a1c1d499
child 164 724c443e6f79
equal deleted inserted replaced
134:562ccdb2c3e5 135:098936234135
     4 	poolDictionaries:''
     4 	poolDictionaries:''
     5 	category:'Java-Support'
     5 	category:'Java-Support'
     6 !
     6 !
     7 
     7 
     8 
     8 
     9 !JavaExceptionTableEntry  class methodsFor:'instance creation'!
     9 !JavaExceptionTableEntry class methodsFor:'instance creation'!
    10 
    10 
    11 startPC:start_pc endPC:end_pc handlerPC:handler_pc catchType:catch_type
    11 startPC:start_pc endPC:end_pc handlerPC:handler_pc catchType:catch_type
    12     ^ self new startPC:start_pc endPC:end_pc handlerPC:handler_pc catchType:catch_type
    12     ^ self new startPC:start_pc endPC:end_pc handlerPC:handler_pc catchType:catch_type
    13 
    13 
    14     "Created: 16.4.1996 / 12:11:13 / cg"
    14     "Created: 16.4.1996 / 12:11:13 / cg"
       
    15 ! !
       
    16 
       
    17 !JavaExceptionTableEntry methodsFor:'accessing'!
       
    18 
       
    19 catchType
       
    20     "return the value of the instance variable 'catchType' (automatically generated)"
       
    21 
       
    22     ^ catchType
       
    23 
       
    24     "Created: 7.2.1997 / 21:01:23 / cg"
       
    25 !
       
    26 
       
    27 endPC
       
    28     "return the value of the instance variable 'endPC' (automatically generated)"
       
    29 
       
    30     ^ endPC
       
    31 
       
    32     "Created: 7.2.1997 / 20:53:23 / cg"
       
    33 !
       
    34 
       
    35 handlerPC
       
    36     "return the value of the instance variable 'handlerPC' (automatically generated)"
       
    37 
       
    38     ^ handlerPC
       
    39 
       
    40     "Created: 7.2.1997 / 20:06:31 / cg"
       
    41 !
       
    42 
       
    43 startPC
       
    44     "return the value of the instance variable 'startPC' (automatically generated)"
       
    45 
       
    46     ^ startPC
       
    47 
       
    48     "Created: 7.2.1997 / 20:53:20 / cg"
    15 ! !
    49 ! !
    16 
    50 
    17 !JavaExceptionTableEntry methodsFor:'private accessing'!
    51 !JavaExceptionTableEntry methodsFor:'private accessing'!
    18 
    52 
    19 handlerPCFor:exception at:pc in:aMethod
    53 handlerPCFor:exception at:pc in:aMethod
    48     catchType := catch_type
    82     catchType := catch_type
    49 
    83 
    50     "Created: 16.4.1996 / 12:11:45 / cg"
    84     "Created: 16.4.1996 / 12:11:45 / cg"
    51 ! !
    85 ! !
    52 
    86 
    53 !JavaExceptionTableEntry  class methodsFor:'documentation'!
    87 !JavaExceptionTableEntry class methodsFor:'documentation'!
    54 
    88 
    55 version
    89 version
    56     ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaExceptionTableEntry.st,v 1.8 1996/07/06 21:54:15 cg Exp $'
    90     ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaExceptionTableEntry.st,v 1.9 1997/02/07 20:37:24 cg Exp $'
    57 ! !
    91 ! !