JavaExceptionTableEntry.st
changeset 135 098936234135
parent 122 e731a1c1d499
child 164 724c443e6f79
--- a/JavaExceptionTableEntry.st	Sat Feb 01 21:09:38 1997 +0000
+++ b/JavaExceptionTableEntry.st	Fri Feb 07 20:37:59 1997 +0000
@@ -6,7 +6,7 @@
 !
 
 
-!JavaExceptionTableEntry  class methodsFor:'instance creation'!
+!JavaExceptionTableEntry class methodsFor:'instance creation'!
 
 startPC:start_pc endPC:end_pc handlerPC:handler_pc catchType:catch_type
     ^ self new startPC:start_pc endPC:end_pc handlerPC:handler_pc catchType:catch_type
@@ -14,6 +14,40 @@
     "Created: 16.4.1996 / 12:11:13 / cg"
 ! !
 
+!JavaExceptionTableEntry methodsFor:'accessing'!
+
+catchType
+    "return the value of the instance variable 'catchType' (automatically generated)"
+
+    ^ catchType
+
+    "Created: 7.2.1997 / 21:01:23 / cg"
+!
+
+endPC
+    "return the value of the instance variable 'endPC' (automatically generated)"
+
+    ^ endPC
+
+    "Created: 7.2.1997 / 20:53:23 / cg"
+!
+
+handlerPC
+    "return the value of the instance variable 'handlerPC' (automatically generated)"
+
+    ^ handlerPC
+
+    "Created: 7.2.1997 / 20:06:31 / cg"
+!
+
+startPC
+    "return the value of the instance variable 'startPC' (automatically generated)"
+
+    ^ startPC
+
+    "Created: 7.2.1997 / 20:53:20 / cg"
+! !
+
 !JavaExceptionTableEntry methodsFor:'private accessing'!
 
 handlerPCFor:exception at:pc in:aMethod
@@ -50,8 +84,8 @@
     "Created: 16.4.1996 / 12:11:45 / cg"
 ! !
 
-!JavaExceptionTableEntry  class methodsFor:'documentation'!
+!JavaExceptionTableEntry class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaExceptionTableEntry.st,v 1.8 1996/07/06 21:54:15 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaExceptionTableEntry.st,v 1.9 1997/02/07 20:37:24 cg Exp $'
 ! !