xquery/trunk/XQuery__TypeXSFloat.st
changeset 0 5057afe1ec87
child 232 9d8fd28b99b0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xquery/trunk/XQuery__TypeXSFloat.st	Tue Apr 08 19:47:42 2008 +0000
@@ -0,0 +1,27 @@
+"{ Package: 'stx:goodies/xmlsuite/xquery' }"
+
+"{ NameSpace: XQuery }"
+
+TypeXSAnyAtomicType subclass:#TypeXSFloat
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'XQuery-Types'
+!
+
+
+!TypeXSFloat methodsFor:'accessing'!
+
+typeName
+    "Superclass says that I am responsible to implement this method"
+
+    ^'xs:float'
+
+    "Created: / 05-12-2007 / 20:52:53 / janfrog"
+! !
+
+!TypeXSFloat class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /opt/data/cvs/stx/goodies/xmlsuite/xquery/XQuery__TypeXSFloat.st,v 1.1 2007-12-05 21:06:23 vranyj1 Exp $'
+! !