File tree Expand file tree Collapse file tree
src/main/java/eu/europa/ted/eforms/xpath Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44import java .util .List ;
55
66public class XPathInfo {
7- private LinkedList <XPathStep > steps = new LinkedList <>();
7+ private LinkedList <XPathStep > steps = new LinkedList <>();
88 private String pathToLastElement ;
99 private String attributeName ;
1010
Original file line number Diff line number Diff line change @@ -125,8 +125,8 @@ public void exitAbbrevforwardstep(AbbrevforwardstepContext ctx) {
125125 * because {@link ParserRuleContext#getText()} omits whitespace and other lexer tokens in the
126126 * HIDDEN channel.
127127 *
128- * @param context
129- * @return
128+ * @param context Information on a rule that matched
129+ * @return The input text that matched the rule corresponding to the specified context
130130 */
131131 private String getInputText (ParserRuleContext context ) {
132132 return this .inputStream
Original file line number Diff line number Diff line change @@ -13,15 +13,15 @@ public class XPathStep implements Comparable<XPathStep> {
1313 private final List <String > predicates ;
1414
1515 public XPathStep (String stepText , List <String > predicates ) {
16- this .stepText = StringUtils .strip (stepText );
16+ this .stepText = StringUtils .strip (stepText );
1717 this .predicates = predicates ;
18- }
18+ }
1919
2020 public String getStepText () {
2121 return stepText ;
2222 }
2323
24- public List <String > getPredicates () {
24+ public List <String > getPredicates () {
2525 return predicates ;
2626 }
2727
You can’t perform that action at this time.
0 commit comments