xpath/stx_goodies_xmlsuite_xpath.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 05 Feb 2016 02:32:40 +0000
changeset 303 04365cd0296b
parent 296 ea3dbc023c80
permissions -rw-r--r--
Added .hgignore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     1
"{ Package: 'stx:goodies/xmlsuite/xpath' }"
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     2
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     3
LibraryDefinition subclass:#stx_goodies_xmlsuite_xpath
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     4
	instanceVariableNames:''
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     5
	classVariableNames:''
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     6
	poolDictionaries:''
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     7
	category:'* Projects & Packages *'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     8
!
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
     9
24
9a2db6739a5a added required methods #parent, #parent: and #source to the XPathExpression
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12
diff changeset
    10
5
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    11
!stx_goodies_xmlsuite_xpath class methodsFor:'description'!
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    12
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    13
preRequisites
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    14
    ^ #(
10
4a5fde97d883 references to package cvut-fel:* rewritten to references to cvut:fel/*
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 5
diff changeset
    15
        #'cvut:fel/perseus/core'    "Perseus::ASTNode - superclass of XMLv2::XPathAxisPrecedingSibling "
5
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    16
        #'stx:goodies/smaCC'    "SmaCC::SmaCCParser - superclass of XMLv2::XPathParser "
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    17
        #'stx:goodies/sunit'    "TestCase - superclass of XMLv2::XPathExpressionOptimizerTests "
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    18
        #'stx:goodies/xml/vw'    "XML::Document - referenced by XMLv2::XPathVWDocumentAdaptor class>>documentClass "
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    19
        #'stx:goodies/xmlsuite/core'    "XMLv2::XMLReader - superclass of XMLv2::XPathDOMAdaptorXMLReader "
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    20
        #'stx:libbasic'    "Object - superclass of XMLv2::XPathDOM3DocumentAdaptor "
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    21
        #'stx:libbasic2'    "List - referenced by XMLv2::XPathExprTreeNode>>subnodes "
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    22
    )
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    23
35
b70630fb532b Added instvar line: to XPathExpression to be polymorph with Perseus::ASTNode
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 26
diff changeset
    24
    "Modified: / 01-12-2008 / 16:13:22 / Jan Vrany <vranyj1@fel.cvut.cz>"
5
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    25
! !
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    26
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    27
!stx_goodies_xmlsuite_xpath class methodsFor:'description - contents'!
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    28
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    29
classNamesAndAttributes
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    30
    ^ #(
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    31
        "<className> or (<className> attributes...) in load order"
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    32
        #'XMLv2::XPathASTNode'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    33
        #'XMLv2::XPathContext'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    34
        #'XMLv2::XPathCoverageMonitor'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    35
        #'XMLv2::XPathDOMAdaptorXMLReader'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    36
        #'XMLv2::XPathDocumentAdaptor'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    37
        #'XMLv2::XPathDocumentAdaptorFactory'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    38
        #'XMLv2::XPathDocumentAdaptorReleasedError'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    39
        #'XMLv2::XPathDocumentAdaptorTests'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    40
        #'XMLv2::XPathDocumentNotFoundError'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    41
        #'XMLv2::XPathDocumentProvider'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    42
        #'XMLv2::XPathExprTreeNode'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    43
        #'XMLv2::XPathExpression'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    44
        #'XMLv2::XPathExpressionOptimizer'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    45
        #'XMLv2::XPathExpressionOptimizerTests'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    46
        #'XMLv2::XPathInvalidNodeIdError'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    47
        #'XMLv2::XPathLocationPath'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    48
        #'XMLv2::XPathLocationStep'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    49
        #'XMLv2::XPathNode'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    50
        #'XMLv2::XPathNodePosition'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    51
        #'XMLv2::XPathNodePositionComparator'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    52
        #'XMLv2::XPathNodeSet'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    53
        #'XMLv2::XPathNodeTypeTest'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    54
        #'XMLv2::XPathParser'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    55
        #'XMLv2::XPathProcessor'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    56
        #'XMLv2::XPathScanner'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    57
        #'XMLv2::XPathTests'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    58
        #'stx_goodies_xmlsuite_xpath'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    59
        #'XMLv2::XPathAxis'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    60
        #'XMLv2::XPathDOM3DocumentAdaptor'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    61
        #'XMLv2::XPathDOM3DocumentAdaptorTests'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    62
        #'XMLv2::XPathElementNode'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    63
        #'XMLv2::XPathNodeTest'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    64
        #'XMLv2::XPathPredicate'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    65
        #'XMLv2::XPathRootNode'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    66
        #'XMLv2::XPathSimpleDocumentProvider'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    67
        #'XMLv2::XPathVWDocumentAdaptor'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    68
        #'XMLv2::XPathAxisAncestor'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    69
        #'XMLv2::XPathAxisAncestorOrSelf'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    70
        #'XMLv2::XPathAxisAttribute'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    71
        #'XMLv2::XPathAxisChild'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    72
        #'XMLv2::XPathAxisDescendant'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    73
        #'XMLv2::XPathAxisDescendantOrSelf'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    74
        #'XMLv2::XPathAxisFollowing'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    75
        #'XMLv2::XPathAxisFollowingSibling'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    76
        #'XMLv2::XPathAxisParent'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    77
        #'XMLv2::XPathAxisPreceding'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    78
        #'XMLv2::XPathAxisPrecedingSibling'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    79
        #'XMLv2::XPathAxisSelf'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    80
        #'XMLv2::XPathKindTest'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    81
        #'XMLv2::XPathNameTest'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    82
        #'XMLv2::XPathAnyKindTest'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    83
        #'XMLv2::XPathAttributeTest'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    84
        #'XMLv2::XPathCommentTest'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    85
        #'XMLv2::XPathDocumentTest'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    86
        #'XMLv2::XPathElementTest'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    87
        #'XMLv2::XPathProcessingInstructionTest'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    88
        #'XMLv2::XPathTextTest'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    89
    )
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    90
!
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    91
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    92
extensionMethodNames
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    93
    ^ #(
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    94
    )
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    95
! !
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    96
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    97
!stx_goodies_xmlsuite_xpath class methodsFor:'description - project information'!
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    98
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
    99
companyName
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   100
    "Return a companyname which will appear in <lib>.rc"
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   101
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   102
    ^ 'eXept Software AG'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   103
!
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   104
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   105
description
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   106
    "Return a description string which will appear in vc.def / bc.def"
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   107
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   108
    ^ 'Smalltalk/X Class library'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   109
!
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   110
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   111
legalCopyright
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   112
    "Return a copyright string which will appear in <lib>.rc"
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   113
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   114
    ^ 'Copyright Claus Gittinger 1988-2008\nCopyright eXept Software AG 1998-2008'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   115
!
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   116
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   117
productName
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   118
    "Return a product name which will appear in <lib>.rc"
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   119
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   120
    ^ 'Smalltalk/X'
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   121
! !
0dd7521c54b7 Loaded into & commited from 5.3.6
Jan Vrany <jan.vrany@fit.cvut.cz>
parents:
diff changeset
   122
24
9a2db6739a5a added required methods #parent, #parent: and #source to the XPathExpression
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12
diff changeset
   123
!stx_goodies_xmlsuite_xpath class methodsFor:'documentation'!
9a2db6739a5a added required methods #parent, #parent: and #source to the XPathExpression
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12
diff changeset
   124
9a2db6739a5a added required methods #parent, #parent: and #source to the XPathExpression
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12
diff changeset
   125
version
9a2db6739a5a added required methods #parent, #parent: and #source to the XPathExpression
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12
diff changeset
   126
    ^'$Id$'
9a2db6739a5a added required methods #parent, #parent: and #source to the XPathExpression
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12
diff changeset
   127
! !