NameSpaceCreationChange.st
author mawalch
Wed, 17 May 2017 12:52:38 +0200
changeset 4238 e3824d6ddfb7
parent 3836 17098ebf8da6
child 3838 474d8ec95b33
permissions -rw-r--r--
#DOCUMENTATION by mawalch class: Change comment/format in: #asAntiChange

"{ Encoding: utf8 }"

"
 COPYRIGHT (c) 1998 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'stx:libbasic3' }"

"{ NameSpace: Smalltalk }"

Change subclass:#NameSpaceCreationChange
	instanceVariableNames:'otherParameters nameSpaceName'
	classVariableNames:''
	poolDictionaries:''
	category:'System-Changes'
!

!NameSpaceCreationChange class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1998 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

! !

!NameSpaceCreationChange methodsFor:'accessing'!

fullClassName
    ^ nameSpaceName
!

name:nm
    nameSpaceName := nm

    "Created: / 16.2.1998 / 14:31:14 / cg"
!

nameSpaceName:nm
    nameSpaceName := nm

    "Created: / 16.2.1998 / 14:31:14 / cg"
!

otherParameters
    "return the value of the instance variable 'otherParameters' (automatically generated)"

    ^ otherParameters
!

otherParameters:something
    "set the value of the instance variable 'otherParameters' (automatically generated)"

    otherParameters := something.
! !

!NameSpaceCreationChange methodsFor:'applying'!

apply
    "apply the change"

    NameSpace fullName:nameSpaceName
! !

!NameSpaceCreationChange methodsFor:'printing'!

printOn:aStream
    aStream 
        nextPutAll:'NameSpace fullName:'; 
        nextPutAll:nameSpaceName asSymbol storeString

    "Created: / 16.2.1998 / 14:31:41 / cg"
! !

!NameSpaceCreationChange methodsFor:'testing'!

isNameSpaceCreationChange
    ^ true

    "Created: / 24-11-2011 / 12:10:12 / cg"
! !

!NameSpaceCreationChange class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic3/NameSpaceCreationChange.st,v 1.5 2015-03-24 18:00:15 cg Exp $'
! !