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

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

"{ NameSpace: XQuery }"

TypeXSDecimal subclass:#TypeXSInteger
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'XQuery-Types'
!


!TypeXSInteger methodsFor:'accessing'!

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

    ^'xs:integer'

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

!TypeXSInteger class methodsFor:'documentation'!

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