(int line)
| 35 | } |
| 36 | |
| 37 | public String getLine(int line) { |
| 38 | if ( lines==null ) { |
| 39 | lines = Arrays.asList(content.split("\n")); |
| 40 | } |
| 41 | if ( line>0 ) { |
| 42 | return lines.get(line-1); |
| 43 | } |
| 44 | return null; |
| 45 | } |
| 46 | |
| 47 | public void setTree(ParserRuleContext root) { |
| 48 | this.tree = root; |
no test coverage detected