xquery/trunk/XQuery__AstCompAttrConstructor.st
changeset 0 5057afe1ec87
child 232 9d8fd28b99b0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xquery/trunk/XQuery__AstCompAttrConstructor.st	Tue Apr 08 19:47:42 2008 +0000
@@ -0,0 +1,76 @@
+"{ Package: 'stx:goodies/xmlsuite/xquery' }"
+
+"{ NameSpace: XQuery }"
+
+AstNode subclass:#AstCompAttrConstructor
+	instanceVariableNames:'qname expr contentExpr'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'XQuery-AST'
+!
+
+
+!AstCompAttrConstructor methodsFor:'accessing'!
+
+contentExpr
+    ^ contentExpr
+
+    "Created: / 01-07-2006 / 11:50:02 / ked"
+!
+
+contentExpr:something
+    contentExpr := something.
+
+    "Created: / 01-07-2006 / 11:50:02 / ked"
+!
+
+expr
+    ^ expr
+
+    "Created: / 01-07-2006 / 11:50:02 / ked"
+!
+
+expr:something
+    expr := something.
+
+    "Created: / 01-07-2006 / 11:50:02 / ked"
+!
+
+qname
+    ^ qname
+
+    "Created: / 01-07-2006 / 11:50:02 / ked"
+!
+
+qname:something
+    qname := something.
+
+    "Created: / 01-07-2006 / 11:50:02 / ked"
+! !
+
+!AstCompAttrConstructor methodsFor:'testing'!
+
+isAstCompAttrConstructor
+    ^ true
+
+    "Modified: / 12-10-2006 / 21:57:46 / ked"
+! !
+
+!AstCompAttrConstructor 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 visitAstCompAttrConstructor:self
+
+    "Created: / 06-07-2006 / 19:12:08 / ked"
+! !
+
+!AstCompAttrConstructor class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /opt/data/cvs/stx/goodies/xmlsuite/xquery/XQuery__AstCompAttrConstructor.st,v 1.1 2006-12-05 14:05:14 vranyj1 Exp $'
+! !