An inclusive interval a..b. Used to track ranges in output and template patterns (for debugging).
| 33 | |
| 34 | |
| 35 | public class Interval { |
| 36 | public int a; |
| 37 | public int b; |
| 38 | |
| 39 | public Interval(int a, int b) { |
| 40 | this.a = a; |
| 41 | this.b = b; |
| 42 | } |
| 43 | |
| 44 | @Override |
| 45 | public String toString() { |
| 46 | return a+ |
| 47 | ".." +b; |
| 48 | } |
| 49 | } |
nothing calls this directly
no outgoing calls
no test coverage detected