QualifiedName.st
author Claus Gittinger <cg@exept.de>
Sat, 08 Feb 2020 19:15:19 +0100
changeset 25254 41d6e0766006
parent 25067 4113ce2e6ba4
permissions -rw-r--r--
#FEATURE by exept class: MeasurementValue changed: #+/- class: MeasurementValue class added: #value:absoluteError: comment/format in: #value:error:

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