QualifiedName.st
author Stefan Vogel <sv@exept.de>
Fri, 10 Jan 2020 15:35:15 +0100
changeset 25185 c69a46903233
parent 25067 4113ce2e6ba4
permissions -rw-r--r--
#QUALITY by stefan class: CharacterEncoder changed: #encodingError (send #ifTrue: instead of #ifFalse:)

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