xquery/trunk/XQuery__TypeNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 08 Apr 2008 19:47:42 +0000
changeset 0 5057afe1ec87
child 232 9d8fd28b99b0
permissions -rw-r--r--
Initial import from CVS

"{ Package: 'stx:goodies/xmlsuite/xquery' }"

"{ NameSpace: XQuery }"

TypeItem subclass:#TypeNode
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'XQuery-Types'
!


!TypeNode methodsFor:'accessing'!

typeName
    "Superclass says that I am responsible to implement this method"

    ^'node'

    "Created: / 05-12-2007 / 20:52:19 / janfrog"
! !

!TypeNode class methodsFor:'documentation'!

version
    ^ '$Header: /opt/data/cvs/stx/goodies/xmlsuite/xquery/XQuery__TypeNode.st,v 1.1 2007-12-05 21:09:13 vranyj1 Exp $'
! !