Class RelativePath
- java.lang.Object
-
- org.apache.taglibs.standard.extra.spath.Path
-
- org.apache.taglibs.standard.extra.spath.RelativePath
-
public class RelativePath extends Path
Represents a relative SPath expression.
-
-
Field Summary
Fields Modifier and Type Field Description private RelativePath
next
private Step
step
-
Constructor Summary
Constructors Constructor Description RelativePath(Step step, RelativePath next)
Constructs a new RelativePath object, based on a Step and another (possibly null) RelativePath.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List
getSteps()
Retrives an ordered list of Step objects representing this expression.
-
-
-
Field Detail
-
next
private RelativePath next
-
step
private Step step
-
-
Constructor Detail
-
RelativePath
public RelativePath(Step step, RelativePath next)
Constructs a new RelativePath object, based on a Step and another (possibly null) RelativePath. If 'all' is true, then the path matches all instances of 'next' underneath 'step'; otherwise; 'next' must be an immediate child of 'step'.
-
-