1   package com.puppycrawl.tools.checkstyle.xpath.xpathmapper;
2   
3   public class InputXpathMapperAst {
4   
5       /**
6        * Returns if current node has children.
7        * @return if current node has children
8        */
9       public void callSomeMethod() {
10          int variable = 123;
11          String another = "HelloWorld";
12          String[] array = new String[3];
13          for (String cycle : array) {
14  
15          }
16      }
17  
18      /**
19       * Returns if current node has children.
20       * @return if current node has children
21       */
22      public String getSomeMethod() {
23          return "HelloWorld";
24      }
25  }