QualifiedName.st
author Claus Gittinger <cg@exept.de>
Sun, 03 May 2020 13:20:12 +0200
changeset 25379 609d492f29a7
parent 25067 4113ce2e6ba4
permissions -rw-r--r--
#DOCUMENTATION by cg class: Object comment/format in: #perform:ifNotUnderstood:

"{ Encoding: utf8 }"

"{ Package: 'stx:libbasic' }"

"{ NameSpace: Smalltalk }"

Object subclass:#QualifiedName
	instanceVariableNames:'pathString'
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Support'
!

!QualifiedName class methodsFor:'documentation'!

documentation
"
    a dummy class to allow fileIn of some VW code
"
! !

!QualifiedName class methodsFor:'instance creation'!

pathString:pathStringArg 
    ^ self new pathString:pathStringArg 
! !

!QualifiedName methodsFor:'accessing'!

pathString
    ^ pathString
!

pathString:pathStringArg 
    pathString := pathStringArg.
! !

!QualifiedName class methodsFor:'documentation'!

version_CVS
    ^ '$Header$'
! !