NameSpace.st
changeset 1816 b063c5b47433
child 1827 fa0017393e3b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NameSpace.st	Sat Oct 26 15:21:31 1996 +0200
@@ -0,0 +1,29 @@
+Object subclass:#Namespace
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'System-Support'
+!
+
+
+!Namespace methodsFor:'enumeration'!
+
+allBehaviorsDo:aBlock
+    self privateClassesDo:aBlock
+
+    "Created: 26.10.1996 / 12:29:01 / cg"
+! !
+
+!Namespace methodsFor:'queries'!
+
+isNamespace
+    ^ true
+
+    "Created: 26.10.1996 / 11:13:36 / cg"
+! !
+
+!Namespace class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic/NameSpace.st,v 1.1 1996-10-26 13:21:31 cg Exp $'
+! !