got a newline from a child.
| 4 | * got a newline from a child. |
| 5 | */ |
| 6 | public class Newline implements Event { |
| 7 | public final String line; |
| 8 | |
| 9 | public Newline(String line) { |
| 10 | this.line = line; |
| 11 | } |
| 12 | |
| 13 | public String toString() { |
| 14 | return String.format("NewlineEvent: { line='%s' }", line); |
| 15 | } |
| 16 | } |
nothing calls this directly
no outgoing calls
no test coverage detected