Package | Description |
---|---|
org.jaxen.expr |
Interfaces and default implementations for
XPath expression components.
|
org.jaxen.pattern |
Defines XSLT Pattern objects.
|
Modifier and Type | Interface and Description |
---|---|
interface |
AllNodeStep
Represents the XPath node-test
node() . |
interface |
CommentNodeStep
Represents the XPath node-test
comment() . |
interface |
NameStep
Represents an XPath name test such as
para or
svg:rect . |
interface |
ProcessingInstructionNodeStep
Represents the XPath node-test
processing-instruction() . |
interface |
TextNodeStep
Represents the XPath node-test
text() . |
Modifier and Type | Class and Description |
---|---|
class |
DefaultAllNodeStep
Deprecated.
this class will become non-public in the future;
use the interface instead
|
class |
DefaultCommentNodeStep
Deprecated.
this class will become non-public in the future;
use the interface instead
|
class |
DefaultNameStep
Deprecated.
this class will become non-public in the future;
use the interface instead
|
class |
DefaultProcessingInstructionNodeStep
Deprecated.
this class will become non-public in the future;
use the interface instead
|
class |
DefaultStep
Deprecated.
this class will become non-public in the future;
use the interface instead
|
class |
DefaultTextNodeStep
Deprecated.
this class will become non-public in the future;
use the interface instead
|
Modifier and Type | Method and Description |
---|---|
Step |
XPathFactory.createAllNodeStep(int axis)
Create a step with a node() node-test.
|
Step |
DefaultXPathFactory.createAllNodeStep(int axis) |
Step |
XPathFactory.createCommentNodeStep(int axis)
Create a step with a
comment() node-test. |
Step |
DefaultXPathFactory.createCommentNodeStep(int axis) |
Step |
XPathFactory.createNameStep(int axis,
String prefix,
String localName)
Create a step with a named node-test.
|
Step |
DefaultXPathFactory.createNameStep(int axis,
String prefix,
String localName) |
Step |
XPathFactory.createProcessingInstructionNodeStep(int axis,
String name)
Create a step with a
processing-instruction() node-test. |
Step |
DefaultXPathFactory.createProcessingInstructionNodeStep(int axis,
String piName) |
Step |
XPathFactory.createTextNodeStep(int axis)
Create a step with a
text() node-test. |
Step |
DefaultXPathFactory.createTextNodeStep(int axis) |
Modifier and Type | Method and Description |
---|---|
void |
LocationPath.addStep(Step step)
Add the next step to this location path.
|
Modifier and Type | Method and Description |
---|---|
protected static LocationPathPattern |
PatternParser.convertStep(LocationPathPattern path,
Step step) |
protected static boolean |
PatternParser.navigationStep(Step step) |
Copyright © 2001–2015 Codehaus. All rights reserved.