src/JavaClassContentRef2.st
branchjk_new_structure
changeset 752 ff7bc6428c9c
child 758 be8e84381ce0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/JavaClassContentRef2.st	Fri Apr 08 12:02:36 2011 +0000
@@ -0,0 +1,29 @@
+"{ Package: 'stx:libjava' }"
+
+JavaRef2 subclass:#JavaClassContentRef2
+	instanceVariableNames:'classRef nameAndType'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Languages-Java-Reader-Support-new'
+!
+
+
+!JavaClassContentRef2 methodsFor:'comparing'!
+
+= anotherJavaRef
+    "superclass JavaRef2 says that I am responsible to implement this method"
+
+    ^ self shouldImplement
+!
+
+hash
+    "superclass JavaRef2 says that I am responsible to implement this method"
+
+    ^ self shouldImplement
+! !
+
+!JavaClassContentRef2 class methodsFor:'documentation'!
+
+version_SVN
+    ^ '$Id$'
+! !