xpath/XMLv2__XPathAxisPreceding.st
changeset 296 ea3dbc023c80
parent 0 5057afe1ec87
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xpath/XMLv2__XPathAxisPreceding.st	Tue May 12 12:20:53 2015 +0100
@@ -0,0 +1,47 @@
+"{ Package: 'stx:goodies/xmlsuite/xpath' }"
+
+"{ NameSpace: XMLv2 }"
+
+XPathAxis subclass:#XPathAxisPreceding
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'XML Suite-XPath-Axes'
+!
+
+
+!XPathAxisPreceding methodsFor:'printing'!
+
+printOn: stream
+
+    stream nextPutAll:'preceding::'
+
+    "Created: / 15-11-2007 / 22:05:49 / janfrog"
+! !
+
+!XPathAxisPreceding methodsFor:'testing'!
+
+isXPathAxisPreceding
+    ^ true
+
+    "Created: / 16-11-2007 / 09:25:08 / janfrog"
+! !
+
+!XPathAxisPreceding 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 visitXPathAxisPreceding:self
+
+    "Created: / 17-11-2007 / 15:31:52 / janfrog"
+! !
+
+!XPathAxisPreceding class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /opt/data/cvs/stx/goodies/xmlsuite/xpath/XMLv2__XPathAxisPreceding.st,v 1.3 2007-11-18 08:55:57 vranyj1 Exp $'
+! !