xquery/trunk/XQuery__AstStringLiteral.st
changeset 0 5057afe1ec87
child 232 9d8fd28b99b0
equal deleted inserted replaced
-1:000000000000 0:5057afe1ec87
       
     1 "{ Package: 'stx:goodies/xmlsuite/xquery' }"
       
     2 
       
     3 "{ NameSpace: XQuery }"
       
     4 
       
     5 AstNode subclass:#AstStringLiteral
       
     6 	instanceVariableNames:'content'
       
     7 	classVariableNames:''
       
     8 	poolDictionaries:''
       
     9 	category:'XQuery-AST'
       
    10 !
       
    11 
       
    12 
       
    13 !AstStringLiteral methodsFor:'accessing'!
       
    14 
       
    15 content
       
    16     ^ content
       
    17 
       
    18     "Created: / 02-04-2006 / 21:33:03 / ked"
       
    19 !
       
    20 
       
    21 content:something
       
    22     content := something.
       
    23 
       
    24     "Created: / 02-04-2006 / 21:33:03 / ked"
       
    25 ! !
       
    26 
       
    27 !AstStringLiteral methodsFor:'testing'!
       
    28 
       
    29 isAstStringLiteral
       
    30     ^ true
       
    31 
       
    32     "Modified: / 12-10-2006 / 21:57:47 / ked"
       
    33 ! !
       
    34 
       
    35 !AstStringLiteral methodsFor:'visiting'!
       
    36 
       
    37 acceptVisitor:aVisitor 
       
    38     "Double dispatch back to the visitor, passing my type encoded in
       
    39      the selector (visitor pattern)"
       
    40 
       
    41     "stub code automatically generated - please change if required"
       
    42 
       
    43     ^ aVisitor visitAstStringLiteral:self
       
    44 
       
    45     "Created: / 06-07-2006 / 19:12:14 / ked"
       
    46 ! !
       
    47 
       
    48 !AstStringLiteral class methodsFor:'documentation'!
       
    49 
       
    50 version
       
    51     ^ '$Header: /opt/data/cvs/stx/goodies/xmlsuite/xquery/XQuery__AstStringLiteral.st,v 1.1 2006-12-05 14:08:02 vranyj1 Exp $'
       
    52 ! !