JavaUnresolvedInterfaceMethodrefConstant.st
changeset 12 88509e598c12
child 90 918e2740098c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/JavaUnresolvedInterfaceMethodrefConstant.st	Wed Apr 17 20:57:56 1996 +0000
@@ -0,0 +1,28 @@
+JavaUnresolvedRefConstant subclass:#JavaUnresolvedInterfaceMethodrefConstant
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Java-Reader-Support'
+!
+
+
+!JavaUnresolvedInterfaceMethodrefConstant methodsFor:'resolving'!
+
+resolveFrom:aConstantTable
+    |class nameAndType|
+
+    class := self class resolve:(aConstantTable at:index) from:aConstantTable.
+    nameAndType := self class resolve:(aConstantTable at:nameandTypeIndex) from:aConstantTable.
+    ^ JavaInterfaceMethodref 
+        class:class
+        nameandType:nameAndType
+
+    "Modified: 15.4.1996 / 16:26:59 / cg"
+    "Created: 17.4.1996 / 22:47:26 / cg"
+! !
+
+!JavaUnresolvedInterfaceMethodrefConstant class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaUnresolvedInterfaceMethodrefConstant.st,v 1.1 1996/04/17 20:57:56 cg Exp $'
+! !