xpath/trunk/XMLv2__XPathRootNode.st
changeset 0 5057afe1ec87
equal deleted inserted replaced
-1:000000000000 0:5057afe1ec87
       
     1 "{ Package: 'stx:goodies/xmlsuite/xpath' }"
       
     2 
       
     3 "{ NameSpace: XMLv2 }"
       
     4 
       
     5 XPathNode subclass:#XPathRootNode
       
     6 	instanceVariableNames:''
       
     7 	classVariableNames:''
       
     8 	poolDictionaries:''
       
     9 	category:'XML Suite-XPath'
       
    10 !
       
    11 
       
    12 
       
    13 !XPathRootNode methodsFor:'queries'!
       
    14 
       
    15 type
       
    16     ^ #root.
       
    17 ! !
       
    18 
       
    19 !XPathRootNode class methodsFor:'documentation'!
       
    20 
       
    21 version
       
    22     ^ '$Header: /opt/data/cvs/stx/goodies/xmlsuite/xpath/XMLv2__XPathRootNode.st,v 1.1 2006-09-28 16:17:10 vranyj1 Exp $'
       
    23 ! !