QualifiedName.st
author Stefan Vogel <sv@exept.de>
Thu, 16 Apr 2020 16:57:05 +0200
changeset 25362 f1606835f9fb
parent 25067 4113ce2e6ba4
permissions -rw-r--r--
#TUNING by stefan class: Win32OperatingSystem class changed: #getProcessId cache my own process id

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