JavaUnresolvedConstant.st
changeset 1 083530508d9c
child 83 2d61ef3579e4
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/JavaUnresolvedConstant.st	Mon Apr 15 15:08:12 1996 +0000
@@ -0,0 +1,39 @@
+Object subclass:#JavaUnresolvedConstant
+	instanceVariableNames:'index'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Java-Reader-Support'
+!
+
+
+!JavaUnresolvedConstant class methodsFor:'instance creation'!
+
+index:index
+    ^ self new index:index
+
+
+! !
+
+!JavaUnresolvedConstant class methodsFor:'resolving'!
+
+resolve:aPossiblyUnresolvedConstant from:aConstantTable
+    (aPossiblyUnresolvedConstant isKindOf:JavaUnresolvedConstant) ifTrue:[
+        ^ aPossiblyUnresolvedConstant resolveFrom:aConstantTable
+    ].
+    ^ aPossiblyUnresolvedConstant
+
+! !
+
+!JavaUnresolvedConstant methodsFor:'accessing'!
+
+index:i
+    index := i
+
+    "Created: 15.4.1996 / 15:59:45 / cg"
+! !
+
+!JavaUnresolvedConstant class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaUnresolvedConstant.st,v 1.1 1996/04/15 14:58:30 cg Exp $'
+! !