xquery/trunk/XQuery__AstMainModule.st
changeset 0 5057afe1ec87
child 232 9d8fd28b99b0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xquery/trunk/XQuery__AstMainModule.st	Tue Apr 08 19:47:42 2008 +0000
@@ -0,0 +1,79 @@
+"{ Package: 'stx:goodies/xmlsuite/xquery' }"
+
+"{ NameSpace: XQuery }"
+
+AstNode subclass:#AstMainModule
+	instanceVariableNames:'prolog queryBody source'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'XQuery-AST'
+!
+
+
+!AstMainModule methodsFor:'accessing'!
+
+prolog
+    ^ prolog
+
+    "Created: / 24-12-2006 / 14:55:53 / janfrog"
+!
+
+prolog:anAstProlog
+    prolog := anAstProlog.
+
+    "Created: / 24-12-2006 / 14:55:54 / janfrog"
+!
+
+queryBody
+    ^ queryBody
+
+    "Created: / 24-12-2006 / 14:55:54 / janfrog"
+!
+
+queryBody:anAstExpr
+    queryBody := anAstExpr.
+
+    "Created: / 24-12-2006 / 14:55:54 / janfrog"
+!
+
+source
+    ^ source
+
+    "Created: / 12-04-2007 / 11:17:11 / janfrog"
+!
+
+source:sourceObject
+
+    "sourceObject should be anything what undestands
+     asString and returns appropriate string form of
+     module source"
+    
+    source := sourceObject.
+
+    "Created: / 12-04-2007 / 11:17:11 / janfrog"
+!
+
+sourceString
+    ^ self source asString
+
+    "Created: / 12-04-2007 / 11:18:19 / janfrog"
+! !
+
+!AstMainModule methodsFor:'visiting'!
+
+acceptVisitor:aVisitor 
+    "Double dispatch back to the visitor, passing my type encoded in
+     the selector (visitor pattern)"
+
+    "stub code automatically generated - please change if required"
+
+    ^ aVisitor visitAstMainModule:self
+
+    "Created: / 24-12-2006 / 14:56:26 / janfrog"
+! !
+
+!AstMainModule class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /opt/data/cvs/stx/goodies/xmlsuite/xquery/XQuery__AstMainModule.st,v 1.2 2007-04-12 11:44:03 vranyj1 Exp $'
+! !