NameSpace.st
author Claus Gittinger <cg@exept.de>
Mon, 15 Sep 1997 22:41:53 +0200
changeset 2924 398bec06170f
parent 2908 b3be3629fcb1
child 3383 7837c591ecdb
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1827
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
     1
"
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
     2
 COPYRIGHT (c) 1996 by Claus Gittinger
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
     3
              All Rights Reserved
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
     4
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
     5
 This software is furnished under a license and may be used
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
     6
 only in accordance with the terms of that license and with the
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
     8
 be provided or otherwise made available to, or used by, any
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
     9
 other person.  No title to or ownership of the software is
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    10
 hereby transferred.
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    11
"
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    12
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
    13
2924
398bec06170f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2908
diff changeset
    14
'From Smalltalk/X, Version:3.1.10 on 14-sep-1997 at 10:03:22 pm'                !
2908
b3be3629fcb1 vms stuff
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
    15
1933
74a0bff1ad19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
    16
Object subclass:#Namespace
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
    17
	instanceVariableNames:''
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
    18
	classVariableNames:''
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
    19
	poolDictionaries:''
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
    20
	category:'Kernel-Classes'
1933
74a0bff1ad19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1931
diff changeset
    21
!
1827
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    22
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    23
!Namespace class methodsFor:'documentation'!
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    24
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    25
copyright
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    26
"
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    27
 COPYRIGHT (c) 1996 by Claus Gittinger
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    28
              All Rights Reserved
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    29
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    30
 This software is furnished under a license and may be used
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    31
 only in accordance with the terms of that license and with the
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    33
 be provided or otherwise made available to, or used by, any
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    34
 other person.  No title to or ownership of the software is
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    35
 hereby transferred.
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    36
"
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    37
1816
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
!
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
1827
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    40
documentation
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    41
"
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    42
    A Namespace is actually a dummy class, providing a home
2010
eaaa38e8bad0 commentary
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
    43
    for its private classes. 
eaaa38e8bad0 commentary
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
    44
    Thus, internally, the same mechanism is used for classes in
eaaa38e8bad0 commentary
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
    45
    a namespace and private classes.
eaaa38e8bad0 commentary
Claus Gittinger <cg@exept.de>
parents: 2007
diff changeset
    46
    This has two advantages:
1828
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
    47
        - we only need one mechanism for both namespaces
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
    48
          and private classes
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
    49
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
    50
        - there are no possible conflicts between a class
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
    51
          and a namespace named alike.
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
    52
1816
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    53
1827
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    54
    [author:]
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    55
        Claus Gittinger
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    56
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    57
    [see also:]
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    58
        Behavior ClassDescription Class Metaclass
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    59
        PrivateMetaclass
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    60
"
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    61
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    62
! !
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
    63
1828
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
    64
!Namespace class methodsFor:'instance creation'!
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
    65
1931
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    66
fullName:aFullNameSpacePathName
2007
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
    67
    "given a possibly nested name of a namespace, create all required
1931
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    68
     intermediate spaces (if not already existing) and return the
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    69
     bottom-level space."
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    70
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    71
    "/ break it up, check for all intermediate spaces to exist
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    72
    "/ create them as required.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    73
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    74
    |list idx0 idx superSpace done thisNamespace|
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    75
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    76
    list := OrderedCollection new.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    77
    idx0 := 1.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    78
    done := false.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    79
    [done] whileFalse:[
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    80
        idx := aFullNameSpacePathName indexOf:$: startingAt:idx0.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    81
        (idx ~~ 0) ifTrue:[
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    82
            (idx < aFullNameSpacePathName size and:[(aFullNameSpacePathName at:(idx+1)) == $:]) ifTrue:[
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    83
                superSpace := aFullNameSpacePathName copyFrom:idx0 to:(idx-1).
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    84
                list add:superSpace.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    85
                idx0 := idx +2.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    86
            ] ifFalse:[
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    87
                done := true
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    88
            ]
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    89
        ] ifFalse:[
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    90
            done := true.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    91
        ]
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    92
    ].
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    93
    list add:(aFullNameSpacePathName copyFrom:idx0).
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    94
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    95
    "/ now, look and create 'em
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    96
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    97
    thisNamespace := nil.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    98
    list do:[:aName |
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
    99
        |key x|
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   100
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   101
        key := aName asSymbol.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   102
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   103
        thisNamespace isNil ifTrue:[
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   104
            (Smalltalk includesKey:key) ifTrue:[
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   105
                thisNamespace := Smalltalk at:key.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   106
                (thisNamespace notNil
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   107
                and:[thisNamespace isBehavior not]) ifTrue:[
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   108
                    ^ self error:'name conflict: namespace ' , aName , ' vs. global'.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   109
                ]
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   110
            ].
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   111
            thisNamespace isNil ifTrue:[
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   112
                thisNamespace := self name:key
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   113
            ]
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   114
        ] ifFalse:[
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   115
            x := thisNamespace privateClassesAt:key.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   116
            x notNil ifTrue:[
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   117
                thisNamespace := x
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   118
            ] ifFalse:[
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   119
                thisNamespace :=
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   120
                    self subclass:key
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   121
                       instanceVariableNames:''
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   122
                       classVariableNames:''
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   123
                       poolDictionaries:''
2055
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   124
                       privateIn:thisNamespace.
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   125
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   126
                "/ nameSpaces are not in any package
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   127
                thisNamespace setPackage:nil.
1931
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   128
            ]    
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   129
        ]
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   130
    ].
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   131
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   132
    ^ thisNamespace
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   133
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   134
    "Created: 8.11.1996 / 13:41:59 / cg"
2055
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   135
    "Modified: 4.1.1997 / 16:50:59 / cg"
1931
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   136
!
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   137
2007
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   138
name:aStringOrSymbol
2177
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   139
    "create a new nameSpace, named aStringOrSymbol.
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   140
     Notice, that the nameSpace is created in the current one -
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   141
     dont get confused; we recommend, not to nest them too much."
1908
aff3d44e4399 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1901
diff changeset
   142
2177
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   143
    |currentNameSpace newNamespace existing ok|
1828
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   144
2024
71a088db4583 validate nameSpaces name for being a valid identifier.
Claus Gittinger <cg@exept.de>
parents: 2015
diff changeset
   145
    ok := aStringOrSymbol first isLetter.
71a088db4583 validate nameSpaces name for being a valid identifier.
Claus Gittinger <cg@exept.de>
parents: 2015
diff changeset
   146
    ok ifTrue:[
2177
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   147
        (aStringOrSymbol 
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   148
            findFirst:[:ch | (ch isLetterOrDigit or:[ch == $_]) not]
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   149
            startingAt:2) ~~ 0
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   150
        ifTrue:[
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   151
            ok := false.
2024
71a088db4583 validate nameSpaces name for being a valid identifier.
Claus Gittinger <cg@exept.de>
parents: 2015
diff changeset
   152
        ]
2177
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   153
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   154
"/        2 to:aStringOrSymbol size do:[:idx | |ch|
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   155
"/            ch := aStringOrSymbol at:idx.
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   156
"/            ok ifTrue:[
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   157
"/                ok := ch isLetterOrDigit or:[ch == $_].
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   158
"/            ]
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   159
"/        ]
2024
71a088db4583 validate nameSpaces name for being a valid identifier.
Claus Gittinger <cg@exept.de>
parents: 2015
diff changeset
   160
    ].
71a088db4583 validate nameSpaces name for being a valid identifier.
Claus Gittinger <cg@exept.de>
parents: 2015
diff changeset
   161
    ok ifFalse:[
2025
9ab95f23af33 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2024
diff changeset
   162
        self error:'invalid namespace name:''' , aStringOrSymbol printString , ''' (must be a valid identifier)'.
1931
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   163
        ^ nil.
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   164
    ].
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   165
2177
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   166
    currentNameSpace := Class nameSpaceQuerySignal raise.
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   167
    (existing := currentNameSpace at:aStringOrSymbol asSymbol) notNil ifTrue:[
2015
7e6375a8e0f2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2010
diff changeset
   168
        ^ existing
7e6375a8e0f2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2010
diff changeset
   169
    ].
7e6375a8e0f2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2010
diff changeset
   170
2007
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   171
    newNamespace := self subclass:aStringOrSymbol asSymbol
1931
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   172
                         instanceVariableNames:''
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   173
                         classVariableNames:''
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   174
                         poolDictionaries:''
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   175
                         category:'uncategorized namespace'.
2144
76dd062d32a1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2058
diff changeset
   176
2055
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   177
    "/ nameSpaces are not in any package
2924
398bec06170f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2908
diff changeset
   178
    newNamespace notNil ifTrue:[newNamespace setPackage:nil].
1828
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   179
    ^ newNamespace
1901
8eebbd3c7232 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1828
diff changeset
   180
8eebbd3c7232 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1828
diff changeset
   181
    "
8eebbd3c7232 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1828
diff changeset
   182
     Namespace name:'foo'
8eebbd3c7232 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1828
diff changeset
   183
     (Namespace name:'foo') category:'my name space'
2007
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   184
     foo at:#bar put:(Metaclass new new)
1901
8eebbd3c7232 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1828
diff changeset
   185
    "
2177
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   186
    "
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   187
     Namespace name:'an-invalid++name'
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   188
     Namespace name:'another:invalidName'
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   189
     Namespace name:'another::invalidName'
80f6ec11f797 create new namespaces in the current nameSpace (by default)
Claus Gittinger <cg@exept.de>
parents: 2144
diff changeset
   190
    "
1931
5f60d3e5ba6e moved namespace creation completely to Namespace class.
Claus Gittinger <cg@exept.de>
parents: 1908
diff changeset
   191
2924
398bec06170f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2908
diff changeset
   192
    "Modified: 14.9.1997 / 09:46:59 / cg"
1828
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   193
!
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   194
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   195
new
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   196
    "catch new - namespaces are not to be created by the user"
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   197
1828
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   198
    self error:'namespaces are not to be created with new'
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   199
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   200
    "Modified: 8.11.1996 / 21:38:00 / cg"
1828
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   201
! !
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   202
1908
aff3d44e4399 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1901
diff changeset
   203
!Namespace class methodsFor:'accessing'!
1827
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   204
2007
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   205
allClasses
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   206
    |classes|
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   207
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   208
    classes := IdentitySet new.
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   209
    self allBehaviorsDo:[:aClass | classes add:aClass].
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   210
    ^ classes
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   211
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   212
    "Modified: 20.12.1996 / 15:34:50 / cg"
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   213
!
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   214
1827
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   215
at:classNameSymbol
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   216
    "return a class from the namespace defined by the receiver"
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   217
1828
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   218
    ^ self privateClassesAt:classNameSymbol
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   219
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   220
    "Modified: 8.11.1996 / 21:39:41 / cg"
1827
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   221
!
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   222
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   223
at:classNameSymbol ifAbsent:exceptionBlock
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   224
    "return a class or an alternative
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   225
     from the namespace defined by the receiver"
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   226
1827
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   227
    |cls|
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   228
1828
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   229
    cls := self privateClassesAt:classNameSymbol.
1827
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   230
    cls isNil ifTrue:[
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   231
        ^ exceptionBlock value
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   232
    ].
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   233
    ^ cls
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   234
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   235
    "Modified: 8.11.1996 / 21:40:01 / cg"
1827
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   236
!
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   237
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   238
at:classNameSymbol put:aClass
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   239
    "add a class to the namespace defined by the receiver"
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   240
1828
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   241
    ^ self privateClassesAt:classNameSymbol put:aClass
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   242
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   243
    "Modified: 8.11.1996 / 21:40:12 / cg"
2908
b3be3629fcb1 vms stuff
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
   244
!
b3be3629fcb1 vms stuff
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
   245
b3be3629fcb1 vms stuff
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
   246
classNamed:aString
b3be3629fcb1 vms stuff
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
   247
    "return the class with name aString, or nil if absent.
b3be3629fcb1 vms stuff
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
   248
     To get to the metaClass, append ' class' to the string."
b3be3629fcb1 vms stuff
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
   249
b3be3629fcb1 vms stuff
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
   250
    ^ Smalltalk classNamed:(self name , '::' , aString)
b3be3629fcb1 vms stuff
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
   251
b3be3629fcb1 vms stuff
Claus Gittinger <cg@exept.de>
parents: 2583
diff changeset
   252
    "Created: 9.9.1997 / 03:33:56 / cg"
1827
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   253
! !
fa0017393e3b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1816
diff changeset
   254
1908
aff3d44e4399 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1901
diff changeset
   255
!Namespace class methodsFor:'enumerating'!
1816
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   256
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   257
allBehaviorsDo:aBlock
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   258
    "enumerate all classes in this namespace"
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   259
2492
ca
parents: 2177
diff changeset
   260
    Smalltalk allBehaviorsDo:[:aClass |
ca
parents: 2177
diff changeset
   261
        aClass isBehavior ifTrue:[
2583
16b1872c068d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2494
diff changeset
   262
            aClass nameSpace == self ifTrue:[
16b1872c068d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2494
diff changeset
   263
                aBlock value:aClass
16b1872c068d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2494
diff changeset
   264
            ].
2492
ca
parents: 2177
diff changeset
   265
        ]
ca
parents: 2177
diff changeset
   266
    ].
2583
16b1872c068d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2494
diff changeset
   267
16b1872c068d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2494
diff changeset
   268
    "Modified: 23.4.1997 / 17:00:48 / cg"
1816
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   269
! !
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   270
1908
aff3d44e4399 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1901
diff changeset
   271
!Namespace class methodsFor:'fileOut'!
1828
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   272
2058
09ea6d9cd607 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2055
diff changeset
   273
fileOutDefinitionOn:aStream
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   274
    "redefined to generate another definition message"
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   275
1934
f21f70387dc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1933
diff changeset
   276
    self == Namespace ifTrue:[
2058
09ea6d9cd607 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2055
diff changeset
   277
        super fileOutDefinitionOn:aStream
1934
f21f70387dc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1933
diff changeset
   278
    ] ifFalse:[
f21f70387dc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1933
diff changeset
   279
        aStream nextPutAll:('Namespace name:' , self name storeString)
f21f70387dc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1933
diff changeset
   280
    ]
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   281
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   282
    "Modified: 8.11.1996 / 21:39:03 / cg"
2058
09ea6d9cd607 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2055
diff changeset
   283
    "Created: 4.1.1997 / 20:36:32 / cg"
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   284
! !
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   285
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   286
!Namespace class methodsFor:'printing & storing'!
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   287
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   288
displayString
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   289
    "return a printed represenation - here, a reminder is appended,
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   290
     that this is not a regular class"
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   291
2007
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   292
    self == Namespace ifTrue:[
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   293
        ^ super displayString
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   294
    ].
1943
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   295
    ^ self name , ' (* namespace *)'
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   296
0ec17e4627ae better displayString & commentary
Claus Gittinger <cg@exept.de>
parents: 1934
diff changeset
   297
    "Created: 8.11.1996 / 21:37:24 / cg"
2007
57434c08d720 namespace itself is not a namespace
Claus Gittinger <cg@exept.de>
parents: 1943
diff changeset
   298
    "Modified: 20.12.1996 / 15:11:31 / cg"
1828
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   299
! !
92e8ede212e7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1827
diff changeset
   300
1908
aff3d44e4399 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1901
diff changeset
   301
!Namespace class methodsFor:'queries'!
1816
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   302
2031
05484e955aaa *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2030
diff changeset
   303
allNamespaces
2030
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   304
    "return a list of all namespaces"
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   305
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   306
    |set|
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   307
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   308
    set := IdentitySet with:Smalltalk.
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   309
    Smalltalk allBehaviorsDo:[:aClass |
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   310
        (aClass isNamespace 
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   311
        and:[aClass ~~ Namespace
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   312
        and:[aClass ~~ Smalltalk]]) ifTrue:[
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   313
            set add:aClass
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   314
        ]
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   315
    ].
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   316
    ^ set
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   317
94800ed9cdc5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2025
diff changeset
   318
    "Created: 2.1.1997 / 20:17:40 / cg"
2055
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   319
!
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   320
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   321
isNamespace
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   322
    "return true - I am a namespace"
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   323
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   324
    self == Namespace ifTrue:[^ false].
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   325
    ^ true
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   326
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   327
    "Created: 26.10.1996 / 11:13:36 / cg"
fe4e60ded02a namespaces have no package
Claus Gittinger <cg@exept.de>
parents: 2031
diff changeset
   328
    "Modified: 20.12.1996 / 15:11:45 / cg"
1816
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   329
! !
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   330
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   331
!Namespace class methodsFor:'documentation'!
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   332
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   333
version
2924
398bec06170f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2908
diff changeset
   334
    ^ '$Header: /cvs/stx/stx/libbasic/NameSpace.st,v 1.25 1997-09-15 20:41:51 cg Exp $'
1816
b063c5b47433 intitial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   335
! !