NameSpace.st
author Claus Gittinger <cg@exept.de>
Sat, 26 Oct 1996 15:21:31 +0200
changeset 1816 b063c5b47433
child 1827 fa0017393e3b
permissions -rw-r--r--
intitial checkin

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 $'
! !